码迷,mamicode.com
首页 > 编程语言 > 详细

Swift中字符串插值的写法

时间:2016-02-15 18:26:56      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:

 1 let coordinate = (1,1)
 2 switch coordinate
 3 {
 4 case(0,0):
 5     print("It‘s origin!")
 6 case(_,0):
 7     print("(\(coordinate.0),0) is on the x-axis")
 8 case(0,_):
 9     print("\(coordinate.1) in on the y-axis")
10 default:
11     print("\(coordinate.0),\(coordinate.1) is just an ordinary coordinate")
12 }

字符串插值,是指将在字符串中插入某一个属性或值,在swift中使用"\()"括号中加上属性便可以实现。

问:Swift改版后case语句中不能使用区间运算符了吗?

 

Swift中字符串插值的写法

标签:

原文地址:http://www.cnblogs.com/superorangecc/p/5190928.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!