Dart Listクラスの演算子(operator)+()メソッドについてメモ書き。
+()メソッドは同じ型の配列を結合するメソッド。
コーディングで+()メソッドを確認。
void main() {
try {
final test1List = <dynamic>[3, 4, 0, "Apple", 2, "grape"];
final test2List = <dynamic>[5, 6, 7, 8] + (test1List);
print(test2List);
} catch (e) {
print(e.toString());
}
}
実行結果。
[5, 6, 7, 8, 3, 4, 0, Apple, 2, grape]
コメント