欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

set 集合

程序员文章站 2022-07-13 08:43:00
...

set
set 集合
set 集合
set 集合
set 集合
package text_2019;

import java.awt.geom.GeneralPath;
import java.util.ArrayList;
import java.util.Collection;

public class Ttt {

public static  void main(String[] args) {
	// TODO Auto-generated method stub
	
             Collection coll =  new  ArrayList(); 
             coll.add("1");
             coll.add("2");
             coll.add("3");
             
             for(Object at: coll){
            	 System.out.println(at);
             }

}

}