var bitWidth : Int
The number of bits in the binary representation of this value.
この値のバイナリ表現でのビット数。
Availability
Technology
static var bitWidth: Int
{ get }
An unsigned, fixed-width integer type can represent values from 0 through (2 ** bit
, where **
is exponentiation. A signed, fixed-width integer type can represent values from -(2 ** (bit
through (2 ** (bit
. For example, the Int8
type has a bit
value of 8 and can store any integer in the range -128...127
.
符号なしの、固定長整数型は、0から(2 ** bit
までの値を表せます、そこで**
は冪演算です。符号付きの、固定長整数型は、-(2 ** (bit
から(2 ** (bit
までの値を表せます。例えば、Int8
型は、8のbit
値を持ち、範囲-128...127
の中の何らかの整数を格納できます。
var bitWidth : Int