截至目前,我正在尝试在变量为特定值时在屏幕上打印一些文本。
我的代码报告了if(ElementButton.showElement[0] == 2)
行的“无法生成静态引用...”错误:
void buildDiatomicMolecules(){
if(ElementButton.showElement[0] == 2){
textSize(18);
text("H", g.eXLocation/2, g.eYLocation/2 - g.eYLocation/8);
}
在这种情况下,ElementButton是一个类。我是否需要将ElementButton类设为静态?