Instance Property
インスタンスプロパティ
intValue
The integer value of the string.
文字列の整数値。
Declaration
宣言
var intValue: Int32
{ get }
Discussion
議論
The integer value of the string, assuming a decimal representation and skipping whitespace at the beginning of the string. This property is INT_MAX
or INT_MIN
on overflow. This property is 0
if the string doesn’t begin with a valid decimal text representation of a number.
文字列の整数値、10進表現を仮定しています、そして文字列の始まりでの空白を飛ばします。このプロパティは、オーバーフローではINT_MAX
またはINT_MIN
です。このプロパティは0
です、もしある数の有効な10進テキスト表現で、文字列が始まらないならば。
This property uses formatting information stored in the non-localized value; use an Scanner
object for localized scanning of numeric values from a string.
このプロパティは、ローカライズされない値において格納される書式設定情報を使います;Scanner
オブジェクトを文字列から数値のローカライズされた走査をするのに使ってください。
Special Considerations
特別な注意事項
In macOS 10.5 and later, use integerValue
instead.
macOS 10.5以降では、integerValue
を代わりに使ってください。
See Also
参照
Getting Numeric Values
数値を取得する
Related Documentation
関連文書