init?<S>(S, radix: Int)
Creates a new integer value from the given string and radix.
与えられた文字列と基数から新しい整数値を作成します。
Availability
Technology
init?(_ description: String
)
description
The ASCII representation of a number. ある数のASCII表現。
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
という結果になります:
init?<S>(S, radix: Int)