if else代码优化

1、使用return 优化前: if ("java".equals(str)) { // 业务代码…… } else { return; } 优化后: if (!"java".equals(s

代码优化