String类的判断功能:
public boolean equals(Object obj); // 比较字符串内容是否相同,区分大小写
public boolean equalsIgnoreCase(String str);// 比较字符串内容是否相同,不区分大小写
public boolean contains(String str); //判断字符串是否包含传递进来的字符串(要求字符串连续)
public boolean startsWith(String str); // 判断字符串是否以str开头
public boolean endsWith(String str); // 判断字符串是否以str结尾
public boolean isEmpty(String str);
// 判断内容是否为空,根据长度, 长度为0返回true
String s = null; //空对象, 不能调用方法,报错NullPointerException;
|
|