我们能够改变 j的班级功能中的“蓝色”价值,正如这一变化是当地发挥作用一样。 我们如何能够使以下变化变数反映不采用这种方法?
public void changeboolean(Boolean b)
{
if( somecondition )
{
b=true;
}
else
{
b=false;
}
}
EDIT The code could be like this:
public String changeboolean(Boolean b,int show)
{
if( somecondition )
{
b=true;
show=1;
return "verify again";
}
else
{
b=false;
show=2;
return "Logout";
}
show=3;
return verifed;
}
I m searching for something like this
b.setvalue(true);
是否可能?