Java String endsWith() 方法

返回 Java Strings 类


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

返回 Java Strings 类

查看笔记

扫码一下
查看教程更方便