-1
Q
點心項目
A
回答
1
使用等作爲below.Based您迅捷版選擇它。
var totalCount = 0;
for i in 1...10 {
// Swift 1.x
let myString: String = "256"
let myInt: Int? = myString.toInt()
totalCount = totalCount + myInt!
// Swift 2.x
let myString: String = "256"
let myInt: Int? = Int(myString)
totalCount = totalCount + myInt!
}
嘗試這種方式
for i in 1...10 {
// Swift 1.x
let myString: String = "256"
if let number = myString.toInt() {
let myNumber = NSNumber(integer:number)
totalCount = totalCount + myNumber.integerValue
print(totalCount)
} else {
print("'\(myString)' did not convert to an Int")
}
// Swift 2.x
let myString: String = "256"
let myInt: Int? = Int(myString)
if let number = Int(myString) {
let myNumber = NSNumber(integer:number)
totalCount = totalCount + myNumber.integerValue
print(totalCount)
} else {
print("'\(myString)' did not convert to an Int")
}
}
0
這將增加你所有的價格屬性一起
var total = yourArray.reduce(0) { (a, b) in a + Int(b.price) }
相關問題
- 1. PHP與DOMXPath點心項目
- 2. 與中心項目
- 3. CSS中心項目
- 4. 核心特點和項目特點:git的承諾事項通知:
- 5. Android:如何判斷點擊圖庫項目是否爲中心項目?
- 6. GridLayout中的中心項目
- 7. QListWidget對齊項目中心
- 8. 中心菜單項目
- 9. NSCollectionView中的中心項目
- 10. Hybris核心項目類型
- 11. 中心列表項目
- 12. ASP.NET核心服務項目目錄
- 13. CSS佈局的盒裝與重點項目中心
- 14. 什麼asp.net核心項目的MicroService沒有端點
- 15. jquery同位素 - 滾動到中心點擊放大的項目
- 16. 無法從Windows服務回收站點核心CMS項目
- 17. 聚合物核心列表項目點擊事件
- 18. 如何從夾點中心放大列表項目
- 19. 的Visual Studio點網核心項目引用錯誤
- 20. 在Asp.Net核心項目中引用.Net核心類庫項目的問題
- 21. 更新一個新的asp.net核心項目到核心1.1包打破項目
- 22. Flex項目與Actionscript項目的缺點?
- 23. 從項目點擊contentplaceholder消失項目
- 24. RecyclerView項目點擊
- 25. LongListSelector重點項目
- 26. ListBox重點項目
- 27. LongListSelector:項目點擊?
- 28. ExpandableListView項目點擊
- 29. 重新使用現有項目核心,分支或新項目的新項目?
- 30. ASP.NET核心項目上的WebAPI和IdentityServer項目
toInt()不工作 – lordxxx
更新的答案進行檢查。 – Senthilkumar
它不起作用 – lordxxx