gpt4 book ai didi

java - int 不能解引用编译错误

转载 作者:行者123 更新时间:2023-12-02 11:09:26 25 4
gpt4 key购买 nike

当我尝试编译此代码时出现错误说

int cannot be dereferenced



是什么原因造成的?这是我正在使用的代码:
class A {

public static void main(String str[]) {

int System=22;
System.out.println(System);
}

}

最佳答案

通过写作

int System = 22;

您正在隐藏类(class) java.lang.System .所以当你尝试做
System.out.println(...

编译器认为您想要访问变量 outint它没有,因为它是原始类型。

你可以写
int system = 22;
System.out.println(system);

无论如何,变量名应该以小写开头。

关于java - int 不能解引用编译错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22298001/

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