阅读量:0
要判断多个字符串是否同时为空,你可以遍历这些字符串并检查每个字符串是否为空。以下是一个使用Java编写的示例:
public class Main { public static void main(String[] args) { String str1 = ""; String str2 = ""; String str3 = " "; String str4 = null; boolean allEmpty = areAllStringsEmpty(str1, str2, str3, str4); System.out.println("Are all strings empty? " + allEmpty); } public static boolean areAllStringsEmpty(String... strings) { for (String str : strings) { if (str != null && !str.isEmpty()) { return false; } } return true; } }
在这个示例中,我们定义了一个名为areAllStringsEmpty
的方法,它接受可变数量的字符串参数。我们遍历这些字符串,如果发现任何一个字符串不为空(即不为null且长度不为0),则返回false。如果遍历完所有字符串都没有找到非空字符串,则返回true。
注意:这个示例仅适用于Java。如果你使用的是其他编程语言,你需要根据该语言的语法和特性进行调整。