写出下面代码的结果(注意switch选择结构的每个case块以break结束,如果没有使用break关键字,则程序会按顺序一直匹配到最后一个case块才能终止)
public static void main(String[] args) {
int i=0;
int j=-1;
switch(i){
case 0 :j=1;
case 1 :j=1;
case 2 :j=2;
}
System.out.println("j="+j);
}
运行后控制台输出结果为:2