码迷,mamicode.com
首页 > 其他好文 > 详细

Dart基础: List常用属性及方法;

时间:2020-04-12 08:14:55      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:形式   art   lang   move   str   index   remove   rev   eve   

    常用属性:
    List myList = [‘data1‘,‘data2‘,‘data3‘];
    print(myList.isEmpty); //是否为空
    print(myList.isNotEmpty); //是否不为空
    myList.reversed; //反转数组

    常用方法:
    myList.add(‘data4‘);//增加数据;
    myList.addAll(List);//通常用来合并数组;

    myList.indexOf(‘xxx‘);//用来查找数据,找不到返回-1;找到返回对应的下标;

    myList.remove(‘data1‘);//删除指定的值;
    myList.removeAt(index);//删除对应下标的值

    myList.fillRange(0,1);//修改数据, 输入起始位置;

    myList.insert(0,‘data0‘);//向数组中插入数据
    myList.insertAll(0,List);//插入数组
    
    myList.join(‘,‘);// 把数组转换为字符串,以逗号形式分割
    
    字符串转数组:
    var str = ‘data-data1-data2‘;
    str.split(‘-‘);

Dart基础: List常用属性及方法;

标签:形式   art   lang   move   str   index   remove   rev   eve   

原文地址:https://www.cnblogs.com/kangshuishneg/p/12683431.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!