gpt4 book ai didi

java - 是否可以更改java中继承类的 protected 变量?

转载 作者:行者123 更新时间:2023-12-01 16:39:22 25 4
gpt4 key购买 nike

例如:

class A {
protected Integer x;

class A () {
x = new Integer(0);
}

public setX(Integer m) {
x = m;
}
}

class B extends A {

public class B () {
super();
}

public static void main () {
B b = new B();
b.setX(69);
System.out.println("Value of x is: " + b.x); // expect to be 69. Is it correct?
}
}

最佳答案

是的,这就是 protected 的目的:)

关于java - 是否可以更改java中继承类的 protected 变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5484031/

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