首页 > TAG信息列表 > simpleDescription
A SwiftTour
简单值 使用 let 来声明常量,使用 var 来声明变量。一个常量的值,在编译的时候,并不需要有明确的值,但是你只能为它赋值一次。这说明你可以用一个常量来命名一个值,一次赋值就即可在多个地方使用。 var myVariable = 42 myVariable = 50 let myConstant = 42 常量或者变量的类Swift学习——A Swift Tour 枚举和结构体
Enumerations and Structures Enumerations 枚举的使用 使用 enum 定义一个枚举,枚举里面能够关联方法,比方下文中的描写叙述方法 enum Rank: Int { case Ace = 1 case Two, Three, Four, Five, Six, Seven, Eight, Nine, Ten case Jack, Queen, King funSwift学习——A Swift Tour 协议和扩展
Protocols and Extensions Protocols 协议的使用 使用keyword protocol 定义一个协议 protocol ExampleProtocol { var simpleDescription: String { get } mutating func adjust() } 类。枚举和结构体都能够实现协议 class SimpleClass: ExampleProtocol {