This commit is contained in:
Wang Hao
2014-06-12 20:25:00 +08:00
parent 41550b6781
commit 59f1bca643

View File

@ -52,7 +52,7 @@ rangeOfThreeItems.firstValue = 6
let rangeOfFourItems = FixedLengthRange(firstValue: 0, length: 4) let rangeOfFourItems = FixedLengthRange(firstValue: 0, length: 4)
// 该区间表示整数0123 // 该区间表示整数0123
rangeOfFourItems.firstValue = 6 rangeOfFourItems.firstValue = 6
// 尽管firstValue诗歌变量属性,这里还是会报错 // 尽管 firstValue 是个变量属性,这里还是会报错
``` ```