记录成长的点滴
故不积跬步,无以至千里;不积小流,无以成江海。骐骥一跃,不能十步;驽马十驾,功在不舍。锲而舍之,朽木不折;锲而不舍,金石可镂。
09
09
String and Characters String and Characters
A string is a series of characters, such as “hello, world” or “albatross”. Swift strings are represented by the String t
2019-09-09 志鹏
08
栈
栈和队列是在程序设计中被广泛使用的的两种线性数据结构,它们的特点在于基本操作的特殊性,栈必须按“后进先出”的规则进行操作,而队列必须按“先进先出”的规则进行操作。和线性表相比,它们的插入和删除操作受更多的约束和限制,故又称限定性的线性表结
2019-09-08 志鹏
08
30
SwiftBasicOperators SwiftBasicOperators
Basic OperatorsAn operator is a special symbol or phrase that you use to check, change, or combine values.Swift supports
2019-08-30 志鹏
28
27
23
Attributes Attributes
AttributesThere are two kinds of attributes in Swift—those that apply to declarations and those that apply to types. An
2019-08-23 志鹏
23
Methods Methods
MethodsMethods are functions that are associated with a particular type. Classes, structures, and enumerations can all d
2019-08-23 志鹏
21
20
Properties Properties
Properties associate values with a particular class, structure, or enumeration.Stored properties store constant and vari
2019-08-20 志鹏
19
2 / 16