美文网首页
Swift学习散记 1

Swift学习散记 1

作者: NoName903 | 来源:发表于2016-10-29 13:56 被阅读0次

标签(空格分隔): iOS开发 Swift


Swift已经更新到3.0了,是时候开始学习一下Swift了...

//导入框架
import UIKit
//定义常量
let myFristName: String = "Chris"
let myLastName = "Blue"
//定义变量
var age: Int = 30
var stature = 174
//如果一行中只有一条语句,分号";"可以省略
var a = 10;var b = 20
//打印语句
print("My name is "+myName+" "+myLastName)
print("Age is \(age)")
//数组
var arrayInts = [Int]()
arrayInts = [1,2,3]
print(arrayInts)

var shoppingList: [String]
shoppingList = ["milk","eeg"]
print(shoppingList[0])

//数组的个数
print("The shopping list contains \(shoppingList.count) items.")

//数组是否为空
if shoppingList.isEmpty {
    print("The shopping list is empty.")
} else {
    print("The shopping list is not empty.")
}

//添加数组元素
shoppingList += ["bananas"]
shoppingList += ["apples,chocolate"]
print(shoppingList)

//修改数组元素
shoppingList[1] = "six eegs"
shoppingList[2...3] = ["cheese", "butter"]
print(shoppingList)

//移除数组元素
shoppingList.removeFirst()
shoppingList.removeLast()
shoppingList.removeAll()
print(shoppingList)

相关文章

  • Swift学习散记 1

    标签(空格分隔): iOS开发 Swift Swift已经更新到3.0了,是时候开始学习一下Swift了...

  • Swift 学习日记 - 目录/相关链接

    欢迎来到 o1xhack (wyx) 的 Swift 学习日志。更多请看最后。 目录 Swift 学习日记 - 1...

  • Swift散记 枚举

    在 Swift 中,枚举类型是一等(first-class)类型。它们采用了很多在传统上只被类(class)所支持...

  • swift学习1

    swift的优点: 1、优于OC,快速、现代、安全、互动 2、取消了预编译指令包括宏 3、可以使用现有的Cocoa...

  • Swift学习(1)

  • OC与Swift混编,互相导入三方库

    Swift已是大势所趋,那就快开始Swift学习吧。 OC中使用Swift库 pod导入Swift库1.编辑Pod...

  • iOS 10.17日记

    swift 学习 1 static和class的区别 2 学习手势的使用 3 swift 中kvo的使用(和oc...

  • Swift学习笔记①

    Swift学习笔记①Swift学习笔记①

  • Swift 学习笔记

    初级Swift 记录初级swift学习笔记 1.在Swift中,当需要导入类库的时候,直接输入import + 类...

  • 2019-05-16

    工作上: 1、学习swift,在最短的时间学习完语法,把以前的项目用swift重写 2、学习runtime,弄清楚...

网友评论

      本文标题:Swift学习散记 1

      本文链接:https://www.haomeiwen.com/subject/pgzlyttx.html