-
布尔型:Bool->true/false查看全部
-
中文变量:let 姓名 = “IT_xiao小巫"查看全部
-
强制类型转换:Int(1.2)->Float查看全部
-
十进制、二进制ob、八进制0o、十六进制0x查看全部
-
类型,第一个字母是大写哦查看全部
-
元祖 可选性 高级的数据类型 以后学习中会发挥实际运用查看全部
-
var b:Int! //类的构造查看全部
-
//Optional Binding可选形的解包 if let userAge = userInput.toInt() { println("your age is \(userAge)") userAge } else { println("invaliuserInput: \(userInput)'); }查看全部
-
// Playground - noun: a place where people can play var a:Int a = 1 a var imOptionalVariable:Int? imOptionalVariable = 12 let userInput = "18" let userInput = "abc" var age = userInput.toInt() if age { println("your age is" + String(age!)) } else { println("invalid userInput"); }查看全部
-
Optionals 可选值 或者是一个值,或者是没有值 没有值时位nil查看全部
-
swift 坚持学习查看全部
-
The priority of "Double" and "Float" is Double > Float 0b (binary), 0o (octal), 0x (hexadecimal) the number can use "_" to separate without affecting the value static_cast : Int(1.2) == 1 variable name supports unicode encode let 姓名 = "笑了" 姓名 = 姓名 + ".really"查看全部
-
Let means const. Var means variable. variable definitions can be separated by , or ; but ; need to declare the variable type again swift is a "type safety" language variable type is implicitly defined by the initial value also can be explicitly defined: var testStr:String查看全部
-
123查看全部
-
Int 整型 Double,Float 浮点数 String 字符串型查看全部
举报
0/150
提交
取消