for(int i=0; i < MY_STATIC_VARIABLE; i++)
代替
for(int i=0; i < MyClass.MY_STATIC_VARIABLE; i++)
这使得卷入并正常工作.直到后来我才注意到我忘了给这个班级的名字添加前缀.我是否包括班级名称是否重要?静态最终变量是否在其类的上下文中充当全局变量?
Does it matter whether I include the class name or not?
对于您的老师,以及未来的人员,您可能会在最终工作的公司中查看代码.但也许不是 – 如果我正在审查您的代码,我建议在这种情况下省略类名.
对于编译器,不,没关系.
Does a static final variable act like a global variable within the context of it’s class?
当然可以