将 int 值从一个方法访问到另一个方法?

发布于 2024-11-04 17:31:53 字数 448 浏览 2 评论 0原文

我有一个方法,它生成一个随机数,下面是它的代码:

    public int generateNumber(){
    int randomnum = generator.nextInt(5);
    System.out.println(randomnum);
    return randomnum;
}

现在,我想将 randomnum int 值访问到另一个方法中,在同一个类文件中的 if 语句中。就像这样:

public DrawPanel(){  
    timer.schedule(new LeTimer(), 0, 1*1000);

    if(randomnum == 3){
         System.out.println("3 has been counted.");
    }
}

我该怎么做?

I have a method, which generates a random number, heres the code for it:

    public int generateNumber(){
    int randomnum = generator.nextInt(5);
    System.out.println(randomnum);
    return randomnum;
}

Now, I want to acces the randomnum int value, into another method, in the same class file, in an if-statement. Like this:

public DrawPanel(){  
    timer.schedule(new LeTimer(), 0, 1*1000);

    if(randomnum == 3){
         System.out.println("3 has been counted.");
    }
}

How would I do this?

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

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

发布评论

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

评论(1

顾挽 2024-11-11 17:31:53

在类作用域中声明 int,然后所有方法都可以访问它

class
{
    <class scope variables>

    method1() { }
    method2() { }
}

,或者直接在其他方法内调用该方法

if(generateNumber() == 3){
     System.out.println("3 has been counted.");
}

declare the int in class scope then all methods can access it

class
{
    <class scope variables>

    method1() { }
    method2() { }
}

or simply call the method directly inside the other method

if(generateNumber() == 3){
     System.out.println("3 has been counted.");
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文