以撸代码的形式学习Swift-3:字符串和字符(Strings and Characters)
Posted Swift技术专栏
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了以撸代码的形式学习Swift-3:字符串和字符(Strings and Characters)相关的知识,希望对你有一定的参考价值。
1 字符串字面量(String Literals)
“Some string literal value”
2 初始化空字符串 (Initializing an Empty String)
3 字符串可变性(String Mutability)
4 字符串是值类型(Strings Are Value Types)
在实际编译时,Swift 编译器会优化字符串的使用,使实际的复制只发生在绝对必要的情况下,这意味着您将字符串作为值类型的同时可以获得极高的性能。
5 使用字符(Working with Characters)
6 连接字符串和字符 (Concatenating Strings and Characters)
7 字符串插值 (String Interpolation)
插值字符串中写在括号中的表达式不能包含非转义双引号 (“) 和反斜杠 (),并且不能包含回车或换行符。
8 Unicode
9 计算字符数量 (Counting Characters)
welcome0.count
10 访问和修改字符串 (Accessing and Modifying a String)
11 比较字符串 (Comparing Strings)
12 字符串的 Unicode 表示形式(Unicode Representations of Strings)
13 String的常见方法和属性
playground文件:
https://github.com/andyRon/LearnSwift
以上是关于以撸代码的形式学习Swift-3:字符串和字符(Strings and Characters)的主要内容,如果未能解决你的问题,请参考以下文章