public static boolean show(char ch)
{
System.out.println(ch);//接受的参数ch是char,此句输出ch的值
return true;//因为show方法的返回值类型为boolean型,所以只能返回true或false
}
另外在看主函数中的for方法,第二句的判断语句show('b') && x<3都为true时才能继续循环,否则只要有一个为false则循环停止,所以show()的返回值为true,以此来保证for循环不受show()的影响,只受x值得控制
for(show('a'); show('b') && x<3; show('c'))
{
show('d');
x++;
} |