//: playground - noun: a place where people can playimport uikit
var str = "hello, playground"
// 常量的定義用let
let maxlogincount = 10
// 變數的定義用var
var currentlogincount = 0
currentlogincount = 3
// 同時定義多個變數或者常量
var x = 10, y = 20, z = 30
// 定義常量的時候, 盡量使用大寫
let pi = 3.14159, speedoflight = 300_000 // 同300000, 下劃線便於區分多少個0
// 定義變數的時候可以給指定型別, 例如
let mincount: int = 10 // 申明這是乙個整型常量
var name: string = "rinpe chan" // 申明這是乙個字串變數
// 但是swift會自動根據給的賦值自動識別型別
// 變數名不僅僅可以使用英文, 還可以使用中文和表情
let ? = "牛牛"
var 你好 = "你好, 世界"
你好 = "世界, 你好"
// 輸出
print(?)
print(你好)
print(name)
print("當前登入次數為:\(currentlogincount)")
print("π等於\(pi)")
Swift 02 常量和變數
playground noun a place where people can play import uikit var str hello,playground 常量的定義用let let maxlogincount 10 變數的定義用var var currentlogincount 0 c...
Swift 常量和變數
常量和變數必須在使用前宣告 用let來宣告常量,用var來宣告變數 let maximumnumberofloginattempts 10 var currentloginattempt 0可以在一行中宣告多個常量或者多個變數,用逗號隔開 var x 0.0,y 0.0,z 0.0 宣告常量或者變數...
swift變數 常量
先理解兩個詞 常量 不可變的值,一旦宣告,可多次使用,不可改變。變數 可變的值,宣告賦值,可修改。常量和變數必須在使用哪個前宣告。如下 let a 10 var b 0 可以看到,swift中,是不需要在每行 末尾寫分號的。只需要換行以區分。當然,如果是在同一行寫多條 還是需要寫上分號的。同時可以看...