扫码一下
查看教程更方便
endsWith() 方法测试此字符串是否以指定的后缀结尾。
public boolean endsWith(String suffix)
suffix - 要检测的后缀。
如果参数表示的字符序列是该对象表示的字符序列的后缀,则该方法返回true; 否则为假。
请注意,如果参数是空字符串或等于由 equals(Object) 方法确定的此 String 对象,则结果将为 true。
public class Main { public static void main(String args[]) { String Str = new String("This is really not immutable!!"); boolean retVal; retVal = Str.endsWith( "immutable!!" ); System.out.println("Returned Value = " + retVal ); retVal = Str.endsWith( "immu" ); System.out.println("Returned Value = " + retVal ); } }
上面示例编译运行结果如下
Returned Value = true
Returned Value = false