米字键

博客园 首页 新随笔 联系 订阅 管理

public class LinkedlistDome {

    public static void main(String[] args) {

    fun();

}

    public static void fun(){

          //创建多态集合
            Collection<String >co=new ArrayList<String>();

 

t          //添加字符串
              co.add("d");
              co.add("f");
              co.add("e");

        //使用增强for循环遍历
              for(String i:co){
                  System.out.println(i);
              }
    }

}

posted on 2019-03-21 13:47  米字键  阅读(92)  评论(0编辑  收藏  举报