// Dart语言List.addAll()方法
void main() {
List l = [1,2,3];
l.addAll([12,13]);
print(l);
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266159.html
// Dart语言List.addAll()方法
void main() {
List l = [1,2,3];
l.addAll([12,13]);
print(l);
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266159.html