欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【javaSE】for循环、&&、方法

程序员文章站 2022-07-14 23:54:26
...

for循环、&&、方法

public class Demo{
	public static boolean show(char ch){ //show(‘b’)输出:btrue
		System.out.print(ch);
		return true;
	}
public static void main(String[] args){
	int x = 1;
	for(show('a'); show('b') && x<3;show('c')){   //短路与&&左右为true,结果才是true.【】若左侧false,则不执行右侧
		show('d'); 
		x++;
	}
}
}