Java中同一个类中一个函数如何调用另一个函数中的数组?

2024-12-19 02:12:23
推荐回答(1个)
回答1:

把int[] array 定义为全局变量

public class Test{
    public static int[] arry;
    
}