2013年11月26日 星期二

[Java 教學範例拷貝]- Arrays 類別(3/4)

[Java 教學範例拷貝]- Arrays 類別(3/4)


 


剛才找資料時發現一個的Java 教學網站,趕快發揮(C/P)的長才將它備份來,有需要的同好,歡迎來(C/P)一下^^。


 


拷貝來源:
http://openhome.cc/Gossip/JavaGossip-V1/
http://openhome.cc/Gossip/JavaGossip-V1/ArraysClass.htm


 









public class TestEqual { 
public static void main(String[] args) {
int[] arr1 = new int[5];
int[] arr2 = new int[5];

int[] tmp = arr1;

System.out.println(arr1 == tmp);
System.out.println(arr2 == tmp);
}
}


 


沒有留言:

張貼留言