gpt4 book ai didi

java - 在java中访问其他方法变量?

转载 作者:行者123 更新时间:2023-11-29 10:15:22 26 4
gpt4 key购买 nike

public class Document1 {
public static void main(String[] args) {
String i = "A";
eg();
}

public static void eg(){
System.out.println(" " + i);
}
}

我不明白为什么这不起作用。

最佳答案

scope

您在以下方法中遇到编译器错误。

 public static void eg(){
System.out.println(" " + i);
}

因为 i 是 main 方法的局部变量。您无法通过其他方式访问。

您可以做的是将该变量传递到您想要的位置。

 public static void main(String[] args) {
String i = "A";
eg(i);
}

public static void eg(String param){
System.out.println(" " + param);
}

关于java - 在java中访问其他方法变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19360626/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com