username = "guest"; login = true;
上边例子中"login = true;"并非if语句的子语句,要使它也成为if语句的子语句,就必须使用花括号:
if(username==null){ username = "guest"; login = true;}