比如有这样一个函数
void fun(boolean a)
{
  a = !a;
}
这样做似乎不能改变a的值
如果不用return true 或 false ,应该如何做?