a = new ArrayList() {//这个大括号 就相当..._java定义list并赋值">
当前位置:   article > 正文

java--新建list 并赋值

java定义list并赋值

数组初始化 时候的赋值

 

  1. String[] strings = new String[]{
  2. "one","two","three"
  3. };

  

 

list 初始化时候的赋值

 

  1. List<String> a = new ArrayList<String>() {//这个大括号 就相当于我们 new 接口
  2. {//这个大括号 就是 构造代码块 会在构造函数前 调用
  3. this.add("ZBP3100019");
  4. this.add("ZBP3100019");
  5. this.add("ZBP3100019");
  6. this.add("ZBP3100019");
  7. this.add("ZBP3100019");
  8. this.add("ZBP3100019");
  9. this.add("ZBP3100019");
  10. this.add("ZBP3100019");
  11. }
  12. };

  

转载于:https://www.cnblogs.com/llq1214/p/11383075.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/77366
推荐阅读
相关标签