坑爹啊,幸好没写多少,还要先学Markdown的语法来排版。。。。。可能有的地方排版还不对啊,明天直接用markdown写了,省的还要重新排版,好累的。。。。
一起学习一下两个markdown语法吧:
Inline code and Block code
Inline code are surround by backtick
key. To create a block code:
Indent each line by at least 1 tab, or 4 spaces.
var Mou = exactlyTheAppIwant;
This is H1
行首用一个#表示是标题1,预览的时候会自动变大的,酷炫!
初始化字符串(Initializing an Empty String)
var emptyString=""//空字符串字面量
var anotherEmptyString = String()//初始化方法
//两个字符串均为空并且是等价的
我们可以通过检查类型的isEmpty属性来判断该字符串是否是空(下面这个例子就是可以看见字符串是空):
if emptyString.isEmpty{
println("Nothing to see here ")
}
//打印出来“Nothing to see here”
字符串的可变性(String Mutability),声明为var的是变量,声明为let类型的是常量,常量被赋值后不可以被修改。
Working with Characters
for character in "Dog!🐶"{
print(character)
}
// D
// o
// g
// !
// 🐶
Swift中的String类型是值类型,也就是说如果我们创建了一个字符串,那么我们在赋值,或者在方法中传递的时候,就会进行拷贝,任何情况下都会对已有的字符串创建新的副本,并对这个新的副本进行赋值和操作。
连接字符串
字符串可以使用(+)连接在一起
注意:经过实验,这里的+,前后不管有多少的空格输出的值还是"hellothere",hello和there之间并不会有空格
let string1="hello"
let string2="there"
var welcome=string1+string2
也可以通过加法赋值运算符(+=)来将一个字符串添加到一个已经存在的字符串上:
let string2="there"
var instruction="look over"
instruction+=string2
//instruction的值是“look overthere”
也可以用append()方法将一个字符添加到一个字符串变量的尾部:
let string1 = "hello"
let string2 = "there"
var welcome = string1 + string2
let exclamationMark: Character = "!"
welcome.append(exclamationMark)
//现在welcome就等于“hello there!”
字符串插值(String Interpolation)
用下面的表达式子就可以在使用变量的时候,把原本的值填进去
注意:插值字符串中写在括号中中表达式不能包含:非转义反斜杠,换行符,回车
let multiplier = 3
let message = "\(multiplier) times 2.5 is \(Double(multiplier) * 2.5)"
//message的值就是“3 times 2.5 is 7.5”
Unicode
Unicode是一个国际标准用于文本的编码和表示。可以表示任意语言的几乎所有的字符,Swift中的String和Character类型是完全兼容Unicode标准的。
Unicode标量(Unicode Scalars)
Swift中的String类型是基于Unicode标量建立的。Unicode标量是对应字符活着修饰符的唯一的21位数字,如U+0061表示的是“a”
字符串字面量的特殊字符(Special Characters in String Literals)
字符串字面量可以包含以下的特殊字符:
转义字符\0(空字符)、\\(反斜线)、\t(水平制表符)、\n(换行符)、\r(回车符)、\"(双引号)、\'(单引号)。
Unicode标量,写成\u{n}(u为小写),其中n为任意一到八位十六进制数且可用的Unicode位码。
let wiseWord="\"Imagination is more important than knowledge\" -Einstein"
//"Imagination is more important than knowledge" -Einstein
let dollarSign="\u{24}" //"$" Unicode标量 U+0024
let blackHeart="\u{2665}" //♥ Unicode标量 U+2665
let sparklingHeart="\u{1F496}" //💖 Unicode标量 U+1F496