Category:Swift/Type

Revision as of 13:44, 18 November 2022 by imported>Fire
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Swift で使用する型

Directory List
分類 型名 備考
数字 Int 32bit OSの場合 Int32、64bit SOの場合 Int64と同等になる
Int8 -128~127
Int16 -32,768~32,767
Int 32 -2,147,483,648~2,147,483,647
Int 64 -2^63~2^63-1
UInt 2bit OSの場合 UInt32、64bit SOの場合 UInt64と同等になる
UInt8 0~255
UInt16 0~65,535
UInt32 0~4,294,967,295
UInt64 0~2^63*2
Float 浮動小数点型 32bit
Double 浮動小数点型 64bit
文字 Character Unicode 1文字
UnicodeScalar Unicodeの文字コード
String 文字列
その他 class クラス
struct 構造体
Bool ブール型
Enum Enumerate型
Array 配列型
Dictionary 辞書型

Pages in category "Swift/Type"

The following 4 pages are in this category, out of 4 total.