Instance Property
インスタンスプロパティ
doubleValue
The floating-point value of the string as a double
.
文字列の浮動小数点値、double
として。
Declaration
宣言
@property(readonly) double doubleValue;
Discussion
議論
This property doesn’t include any whitespace at the beginning of the string. This property is HUGE_VAL
or –HUGE_VAL
on overflow, 0.0
on underflow. This property is 0.0
if the string doesn’t begin with a valid text representation of a floating-point number.
このプロパティは、どんな空白も文字列の始まりで含みません。このプロパティは、オーバーフローではHUGE_VAL
または–HUGE_VAL
、アンダーフローでは0.0
です。このプロパティは0.0
です、もし文字列が浮動小数点数の有効なテキスト表現で始まらないならば。
This property uses formatting information stored in the non-localized value; use an NSScanner
object for localized scanning of numeric values from a string.
このプロパティは、ローカライズされない値において格納される書式設定情報を使います;NSScanner
オブジェクトを文字列から数値のローカライズされた走査をするのに使ってください。
See Also
参照
Getting Numeric Values
数値を取得する
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
値。
boolValue
The Boolean value of the string.
文字列のブール値。
Related Documentation
関連文書
- scanDouble:
Scans for a double value, returning a found value by reference.
double値を走査します、見つかった値を参照によって返します。