2017年11月20日
摘要: /** * 1.变量 */ let count1 = 11; print(count1); var count2 = 22; print(count2); count2 = 33; print(count2); /** * 2.命名规则 * swift中可以使用几乎任何字符来作为变量和变量名,包 * 阅读全文
posted @ 2017-11-20 22:28 代码少年_夕阳 阅读(206) 评论(0) 推荐(0) 编辑