您好,登錄后才能下訂單哦!
import java.util.*; public class CollectionTest { public static void main(String[] args ){ //1.創建集合 Collection c = new ArrayList(); //2.向集合中添加元素 c.add(1);//jdk1.5之后的自動裝箱, c.add(new Integer(10)); Object o = new Object(); c.add(o);//collection 只能存儲單個元素,并且存儲的元素是引用數據類型。 Customer customer = new Customer("張三",30); c.add(customer); //3.獲取元素的個數 System.out.println(c.size()); //4.判斷集合是否為空? System.out.println(c.isEmpty()); //5.將集合轉換成oject類型的數組 Object[] orray = c.toArray(); for(int i=0;i<orray.length;i++){ System.out.println(orray[i]);//對于Customer類需要重寫toString方法。 } //6.清空 c.clear(); System.out.println(c.size()); } } public class Customer { private String name; private int age; public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } public Customer(String name, int age) { super(); this.name = name; this.age = age; } public Customer(){ } //重寫Customer的toString()方法 public String toString(){ return "name=" + name +" "+"age="+ age; } }
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。