Swift-Cheat-Sheet:Swift 语言的简单指南

时间:2024-07-31 15:24:39
【文件属性】:

文件名称:Swift-Cheat-Sheet:Swift 语言的简单指南

文件大小:4KB

文件格式:ZIP

更新时间:2024-07-31 15:24:39

Swift

#Swift 备忘单 Apple Swift 语言的快速备忘单和参考指南。 指南涵盖了 Swift 的所有关键特性,包括字符串、数组、字典和流控制。 github 上的其他人很少,但这个人试图保持简单。 ###变量 var myInt = 1 var myExplicitInt: Int = 1 // explicit type var x = 1 , y = 2 , z = 3 // declare multiple integers myExplicitInt = 2 // set to another integer value ###常量 let myInt = 1 myInt = 2 // compile-time error! ###字符串 var myString = " a " let myImmutableString = " c " myString +=


【文件预览】:
Swift-Cheat-Sheet-master
----README.md(5KB)
----more-examples()
--------examples.swift(402B)
--------TableViewController.swift(3KB)

网友评论