0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

 Swift学習:基本的なデータ型

Posted at

Swiftの基本的なデータ型

1.文字列型:String
2.整数型:Int
3.浮動小数点型:Double
4.ブール型:Boole

記述例

// 基本的なデータ型
let string: String = "Hello world"
let integer: Int = 10
let double: Double = 0.0
let booleanTrue: Bool = true
let booleanFalse = false

// Bool型は「trueとfalse」だけ

型推論

Swiftは賢いので代入した値から自動的にデータ型を推測する

記述例

let whatIsDatatype = "Hello everyone" // Swift「この値は文字列です」
var double = 10.5 // Swift「この値はdouble型です」
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?