「Swift」浮動小数点Double型から文字のString型への変換サンプル
書式
String(Double型文字)
Double型文字.description
使用例
// String()方法を使用 let price:Double = 45.68 let sRes:String = String(price) print("String()方法: "+sRes) // description方法を使用 let cftB:Double = 72.365 let sRe:String = cftB.description print("description方法: "+sRe) let cftC:Double = 11.341 let sK:String = "\(cftC)" print("結果3: "+sK)
実行結果
String()方法: 45.68
description方法: 72.365
結果3: 11.341