摘要:
swift运算有单目运算,双目运算和三元运算1:赋值操作var iX = 9var iY= 8iX = iY//iX is 8元组赋值let (iX, iY = (8, 7)// iX is 8, iY is 7和c语言不同的是,赋值操作不return值比如:var iA = 1var iB = 2... 阅读全文
摘要:
1:hello worldimport Foundationprintln("hello world")就这样,一句代码就可以打印出 hello world 不需要在末尾加";" 这里如果你加了";"同样可以运行的。感觉好像是为了避免麻烦,不再像c语言那样,每句代码末尾都加";",说来也是,从哲学来... 阅读全文