copyOf数组复制方法的使用(数组扩容练习)

package com.Summer_0420.cn;

import java.util.Arrays;

/**
 * @author Summer
 * 我们使用数组存储了50名学生的考试信息 , 今天又增加了三名同学 , 请扩大存储介质 , 足以存储53名学生信息
 */
public class TestMethod06 {
    static int [] score = new int[50];
    public static void main(String[] args) {
        addScore();

    }
    private static void addScore() {
        for (int i = 0; i < score.length; i++) {
            score[i] =(int) (Math.random()*101);
        }
        System.out.println(Arrays.toString(score));
        
        int [] sc = Arrays.copyOf(score, score.length+3);
        
        System.out.println(Arrays.toString(sc));
    }

}

猜你喜欢

转载自www.cnblogs.com/summerdata/p/10743127.html