Instance Property
インスタンスプロパティ
boolValue
The Boolean value of the string.
文字列のブール値。
Declaration
宣言
@property(readonly) BOOL boolValue;
Discussion
議論
This property is YES
on encountering one of "Y", "y", "T", "t", or a digit 1-9—the method ignores any trailing characters. This property is NO
if the receiver doesn’t begin with a valid decimal text representation of a number.
このプロパティはYES
です、"Y"、"y"、"T"、"t"、またはアラビア数字の1-9の1つとの遭遇に関して — メソッドはあらゆる後に続いている文字を無視します。このプロパティはNO
です、もしレシーバがある数の有効な10進テキスト表現で始まらないならば。
The property assumes a decimal representation and skips whitespace at the beginning of the string. It also skips initial whitespace characters, or optional -/+ sign followed by zeroes.
プロパティは10進表現を仮定します、そして文字列の始まりでの空白を飛ばします。それはまた、冒頭の空白文字、または随意の-/+符号にゼロが続くものを飛ばします。
See Also
参照
Getting Numeric Values
数値を取得する
doubleValue
The floating-point value of the string as a double
.
文字列の浮動小数点値、double
として。
floatValue
The floating-point value of the string as a float
.
文字列の浮動小数点値、float
として。
intValue
The integer value of the string.
文字列の整数値。
integerValue
The NSInteger
value of the string.
文字列のNSInteger
値。
Related Documentation
関連文書
- scanInt:
Scans for an int value from a decimal representation, returning a found value by reference.
ある10進表現からint値を走査します、見つかった値を参照によって返します。