如何使子类 int 值取代主类中的最终静态 int 值?示例:我的主要课程有
public class main {
final static int num = 2;
....
....
System.out.println(num);
}
我的子类在主类中调用。
Public class subclass {
.... -> How can I define the int num = 10 in the subclass without changing the main class code
...
}
交易是不要触及主类,即我不能将其更改为 final static int num = 10; 但我必须将 10 分配给 num。你知道吗?