Swift语法学习

打印输出

println("hello,world")

末尾不需要加分号

定义变量用var,常量用let

var myVariable = 42
let myConstant = 42

变量和常量的类型应该和我们想要的类型一致,编译器可以帮助我们推断类型,我们也可以显示指定类型

let explicitDouble: Double = 70

显示转换类型

let width = 94
let widthLable = lable + String(width)

在字符串中打印数值,在要格式化的数值前加”()”

let apples = 3
let oranges = 5
let appleSummary = "I have \(apples) apples."
let fruitSummary = "I have \(apples + oranges) pieces of fruit."

创建数组和字典

//数组
var shoppingList = ["catfish","water","tulips","blue paint"]
shoppingList[1] = "bottle of water"
//字典
 var occupations = [
     "Malcolm": "Captain","Kaylee": "Mechanic",]
occupations["Jayne"] = "Public Relations"

创建空数组和字典

let emptyArray = String[]()
let emptyDictionary = Dictionary<String,Float>()

相关文章

软件简介:蓝湖辅助工具,减少移动端开发中控件属性的复制和粘...
现实生活中,我们听到的声音都是时间连续的,我们称为这种信...
前言最近在B站上看到一个漂亮的仙女姐姐跳舞视频,循环看了亿...
【Android App】实战项目之仿抖音的短视频分享App(附源码和...
前言这一篇博客应该是我花时间最多的一次了,从2022年1月底至...
因为我既对接过session、cookie,也对接过JWT,今年因为工作...