我不能在一个班级的另一个班级中切换布尔值。我对Java不太有经验。这是代码:
if (me.test.firstplugin.testing.moretesting.thisboolean = true)
{
me.test.firstplugin.testing.moretesting.thisboolean = false;
}
else
{
me.test.firstplugin.testing.moretesting.thisboolean = true;
}
请帮忙!
最佳答案
您无需切换变量,只需一直将其设置为true...。
if (me.test.firstplugin.testing.moretesting.thisboolean = true)
将var me.test.firstplugin.testing.moretesting.thisboolean设置为true
因为那是布尔值,所以您只需这样做:
if (me.test.firstplugin.testing.moretesting.thisboolean)
无需
me.test.firstplugin.testing.moretesting.thisboolean == true
关于java - 无法在类(class)的另一个类(class)中切换 boolean 值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42396508/