gpt4 book ai didi

java - 无法从子类中通过 `super` 访问静态字段?

转载 作者:行者123 更新时间:2023-11-30 03:37:47 25 4
gpt4 key购买 nike

package morepackage;

public class Subclass extends Superclass {
public static void main ( String args[] )
{
String name = super.text;//error in this line
String name1 = Superclass.text;//no error in this line
}}

父类(super class)的代码是:

public class Superclass {
static String text = "flowers";
}

谁能告诉我为什么String name = super.text显示错误

虽然 String name1 = Superclass.text;未显示错误

最佳答案

方法mainstaticstatic方法内部没有super之类的东西。

关于java - 无法从子类中通过 `super` 访问静态字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27423706/

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