<?php /* * Created on 2015年12月17日 * * To change the template for this generated file go to * Window - Preferences - PHPeclipse - PHP - Code Templates */ #--------------打印-------echo - 能够输出一个以上的字符串,print - 只能输出一个字符串,并始终返回 1--------------- echo "我的第
常量 只能赋值一次 let age: Int age = 20 它的值不要求在编译时确定,但使用之前必须赋值一次 var num = 10 num += 20 num += 30 let age2 = num func getAge() -> Int{ return 10 } let age = getAge() print(age) 常量,变量在使用之前,都不能使用 let age: Int var height: Int print(age) print(height) 下面的代码是错误的(