我想创建这样的逻辑:如果s2
为 null,则调试器会跳过所有复杂的字符串操作并返回 null 而不是s1 + s2 + s3
在第一个if
块中看到的。我在某个地方错了吗?
public static String helloWorld(String s1, String s2, String s3){
if(s2==null){
continue;
return null;
}
... lots of string manipulation involving s1, s2 and s3.
return (s1+s2+s3);
}