如何在B类中使用A类的数组,试过了返回值

发布于 2022-09-12 04:24:27 字数 1410 浏览 25 评论 0

需求:在其他类中对数组进行:循环打印输出数组名称(字符串)。
在A类中创建数组,代码如下:

 public int[] exampleList() {
    int exampleList1 = 0;
    int exampleList2 = 1;
    int exampleList3 = 2;
    int exampleList4 = 3;
    int exampleList5 = 4;

    int allexampleList = 5;
    int[] exampleLists = new int[allexampleList]; 

    String[] songsListName = new String[5];
    songsListName[SongsList1] = "示例1";
    songsListName[SongsList2] = "示例2";
    songsListName[SongsList3] = "示例3";
    songsListName[SongsList4] = "示例4";
    songsListName[qqMusicSongsList] = "示例5";

    return exampleLists; //使用返回值让其他类调用

    }

在B类中,如何将exampleLists点击跳转到数组里的exampleLists,
即引用数组int[] exampleLists = new int[allexampleList]行,
代码如下:

class exampleThread implements Runnable { 

    int[] exampleLists = new int[]; 
    //报错Array initializer expected

    @Override
    public void run() {
        for (int i = 0; i < exampleLists[i]; i++) {
            exampleList[i] = (int) Math.random(); 
            System.out.println(exampleLists[i]); //间隔输出
            try {
                Thread.sleep(500);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }
}

参考链接:java 中一个类怎么调用另一个类的数组元素

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

水溶 2022-09-19 04:24:27

增加构造方法,然后在main创建对象的时候将A类返回的数组传入进去。另外你for里变量书写错误,我已经更正。代码如下:

class exampleThread implements Runnable { 
    
    private int[] exampleLists;

    public exampleThread(int[] exampleLists) {
        this.exampleLists = exampleLists;
    }

    @Override
    public void run() {
        for (int i = 0; i < exampleLists[i]; i++) {
            exampleLists[i] = (int) Math.random();
            System.out.println(exampleLists[i]); //间隔输出
            try {
                Thread.sleep(500);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }
}
打小就很酷 2022-09-19 04:24:27

传值都不会??

https://www.runoob.com/java/j...

class exampleThread implements Runnable { 

    int[] exampleLists;
    public exampleThread(int[] exampleLists){
        this.exampleLists = exampleLists;
    }

    @Override
    public void run() {
        //...
    }
}
和影子一齐双人舞 2022-09-19 04:24:27

直接调用方法, 返回值赋值给自己的数组变量就可以

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文