dart:core
庫中int.parse
方法的用法介紹如下。
用法:
int parse(
String source,
{int? radix,
@deprecated int onError(
String source
)?}
)
override
將 source
解析為可能有符號的整數文字並返回其值。
source
必須是一個非空的 base-radix
數字序列,可選前綴為減號或加號('-' 或 '+')。
radix
必須在 2..36 範圍內。使用的數字首先是十進製數字 0..9,然後是值 10 到 35 的字母 'a'..'z'。還接受與小寫字母具有相同值的大寫字母。
如果沒有給出 radix
則默認為 10。在這種情況下,source
數字也可以以 0x
開頭,在這種情況下,數字被解釋為十六進製整數文字,當 int
由64 位有符號整數,十六進製整數文字可能表示大於 263 的值,在這種情況下,該值被解析為 unsigned
數字,結果值為對應的有符號整數值。
對於任何 int n
和有效基數 r
,保證 n == int.parse(n.toRadixString(r), radix: r)
。
如果 source
字符串不包含有效的整數文字,可選地以符號為前綴,則拋出 FormatException(除非使用已棄用的 onError
參數,請參見下文)。
而不是拋出並立即捕獲 FormatException ,而是使用 tryParse 來處理解析錯誤。
例子:
var value = int.tryParse(text);
if (value == null) {
// handle the problem
// ...
}
onError
參數已棄用並將被刪除。而不是 int.parse(string, onError: (string) => ...)
,您應該使用 int.tryParse(string) ?? (...)
。
當源字符串無效並且提供了 onError
時,每當拋出 FormatException 時,都會使用 source
作為參數調用 onError
,並且該調用的結果由 parse 返回。
相關用法
- Dart int.fromEnvironment用法及代碼示例
- Dart int.toUnsigned用法及代碼示例
- Dart int.bitLength用法及代碼示例
- Dart int.operator_shift_left用法及代碼示例
- Dart int.toRadixString用法及代碼示例
- Dart int.operator_bitwise_and用法及代碼示例
- Dart int.operator_bitwise_exclusive_or用法及代碼示例
- Dart int.tryParse用法及代碼示例
- Dart int.operator_triple_shift用法及代碼示例
- Dart int.operator_bitwise_or用法及代碼示例
- Dart int.gcd用法及代碼示例
- Dart int.operator_shift_right用法及代碼示例
- Dart int.toSigned用法及代碼示例
- Dart identityHashCode用法及代碼示例
- Dart identical用法及代碼示例
- Dart MapMixin.containsKey用法及代碼示例
- Dart Iterator用法及代碼示例
- Dart AttributeClassSet.intersection用法及代碼示例
- Dart num.sign用法及代碼示例
- Dart TransformList.last用法及代碼示例
- Dart FileList.first用法及代碼示例
- Dart CanvasRenderingContext2D.drawImageScaledFromSource用法及代碼示例
- Dart FileList.length用法及代碼示例
- Dart Iterable.takeWhile用法及代碼示例
- Dart LinkedHashMap用法及代碼示例
注:本文由純淨天空篩選整理自dart.dev大神的英文原創作品 parse method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。