我想使用java集合框架和使用eclipse IDE的OOPS编写一个Console应用程序。请指导我如何开始并提供一些可能有用的示例代码。提前致谢
答案 0 :(得分:0)
在Eclipse中创建一个新的Java应用程序。
然后在类的静态main()方法中:
//To add objects in a Collection, in this case Strings
ArrayList<String> strings = new ArrayList<String>();
strings.add("Michael");
strings.add("Jennifer");
//To show these objects in the Console
foreach(String string : strings){
System.out.println(string);
}
这将创建包含String对象的List,然后在控制台上打印这些对象。您的集合可以包含任何类型的对象,您不仅限于字符串,例如ArrayList<SomeClass>
或ArrayList<Integer>