The ASCII representation of a number. ある数のASCII表現。
Initializer
init(_:)
Creates a new integer value from the given string.
与えられた文字列から新しい整数値を作成します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 9.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
init?(_ description: String
)
Parameters パラメータ
description
Discussion 解説
The string passed as description
may begin with a plus or minus sign character (+
or -
), followed by one or more numeric digits (0-9
).
description
として渡される文字列は、プラスまたはマイナス符号文字(+
または-
)で始まり、1つ以上の数値のアラビア数字(0-9
)が続くことがあります。
If description
is in an invalid format, or if the value it denotes in base 10 is not representable, the result is nil
. For example, the following conversions result in nil
:
description
が無効な形式になっているならば、またはそれが底10で示す値が表現可能でないならば、結果はnil
です。例えば、次の変換はnil
という結果になります: