• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

Java-导入主类时使用方法的变量

用户头像
it1352
帮助1

问题说明

我正在尝试使用主要部分中另一个类中创建的方法中的变量.

I am trying to use a variable from a method I created in another class in the main section.

例如:

public class test {

public static int n;

public void getLower(){

    int p = 12;
}


public static void main(String[] args) {

    test example = new test();

    example.getLower();

    System.out.println(p);



}

}

但是,我收到错误消息"p无法解析为变量".

However, I get the error message 'p cannot be resolved to a variable'.

我想做的是可能的吗?

提前谢谢!

正确答案

#1

pgetLower方法中的 local 变量.您不是在导入"方法,而是在调用它.该方法返回后,该变量甚至不再存在.

p is a local variable within the getLower method. You're not "importing" the method - you're just calling it. When the method has returned, the variable no longer even exists.

您可以考虑从方法中返回p的值:

You could consider returning the value of p from the method:

public int getLower() {
    int p = 12;
    // Do whatever you want here
    return p;
}

然后将返回值分配给main中的局部变量:

Then assign the return value to a local variable in main:

int result = example.getLower();
System.out.println(result);

您应该阅读有关变量的Java教程以了解更多信息有关各种变量的信息.

You should read the Java tutorial on variables for more information about the different kinds of variables.

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcfjecf
系列文章
更多 icon
同类精品
更多 icon
继续加载