首页 > 代码库 > switch
switch
switch后面如果有一条case不加break的话,那么会将后面的case全部执行,不管是不是满足case的条件
如:
public class Example { public static void main(String args[]) { System.out.println(getValue(2));; } public static int getValue(int i) { int result = 0; switch (i) { case 1: result = result + i; case 2: result = result + i * 2; case 3: result = result + i * 3; } return result; }}
switch
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。