将 int 值从一个方法访问到另一个方法?
我有一个方法,它生成一个随机数,下面是它的代码:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在类作用域中声明 int,然后所有方法都可以访问它
,或者直接在其他方法内调用该方法
declare the int in class scope then all methods can access it
or simply call the method directly inside the other method