从java中的另一个类存储数组

时间:2016-02-27 14:14:13

标签: java arrays class

我知道有很多方法可以存储来自另一个类的数组,但是每个人,甚至是初学者都可以轻松理解的最佳方法是什么?

以下是示例代码:

1st class://这是要存储数组的位置

public class Example{
    private int[] Numbers = {3,2,1}//sample numbers        
}

第二课://这是要存储的数组的位置

public class Example2{
    public void Storage{
        int[] NumberStorage = /* this is where the Numbers from the
                                          1st class to be stored */
    }
}

2 个答案:

答案 0 :(得分:4)

Example班级中创建getter

public int[] getNumbers() { return Numbers; }

然后在您的Example2课程中,您可以实例化Example的实例并调用getter,如:

public void storage(){
    Example example = new Example();
    int[] NumberStorage = example.getNumbers();
}

答案 1 :(得分:0)

这可能是你想要的

头等舱 公共类Class1 {

 $myarray = array('100', '222');

$args = array(
   'post_type' => 'post',
   'post__in'      => $myarray
);
// The Query
$the_query = new WP_Query( $args );
第二节课 公共类Class2 {    public void A(数组,大小)      //输入此处排序     } }