Array_Copy,我和你有相同的內容,但我的內容和你的內容是不同一個。陣列



class Array_Copy{
public static void main(String[] args){
double[] prcVan = {200,0, 350.0, 250.0};
double[] prcLisa = new double[prcVan.length];

//System.arraycopy(來源陣列,起始索引值,目的陣列,起始索引值,複製長度);
System.arraycopy(prcVan, 0, prcLisa, 0, prcVan.length);


System.out.print("麗沙小姐將書籍八折出售: ");
for(int i=0; i<prcLisa.length; i++)
prcLisa[i]*=0.8;

for(double price: prcLisa)
System.out.print(price + " ");

System.out.println();

System.out.print("梵谷先生書店的書籍售價: ");
for(double price: prcVan)
System.out.print(price + " ");
}

留言

這個網誌中的熱門文章

JAVE題目:產生10個亂數值,範圍為10-100之間,再利用「選擇排序法」進行由小到大的排序。並將排序後的結果列出來。

資料庫32範例:小戴修正。

StringBuilder跟StringBuffer的方法