本文概述
- Java字符串endsWith()方法示例
- Java字符串endsWith()方法示例2
内部实施
public boolean endsWith(String suffix) {
return startsWith(suffix, value.length - suffix.value.length);
}
签名
下面给出了endsWith()方法的语法或签名。
public boolean endsWith(String suffix)
参数
后缀:字符序列
退货
对或错
Java字符串endsWith()方法示例
public class EndsWithExample{
public static void main(String args[]){
String s1="java by srcmini";
System.out.println(s1.endsWith("t"));
System.out.println(s1.endsWith("point"));
}}
立即测试
输出:
true
true
Java字符串endsWith()方法示例2
public class EndsWithExample2 {
public static void main(String[] args) {
String str = "Welcome to srcmini.com";
System.out.println(str.endsWith("point"));
if(str.endsWith(".com")) {
System.out.println("String ends with .com");
}else System.out.println("It does not end with .com");
}
}
【Java字符串endsWith()】输出:
false
String ends with .com
推荐阅读
- Java字符串contains()
- Java字符串连接
- Java字符串介绍
- Java字符串compareTo()
- Java字符串charAt()
- 12款适用于iPhone的最佳音乐播放器应用推荐合集
- Win10商店应用默认安装位置C盘更改办法
- Win7系统Win 8怎样才能永久免费升级Win10系统?
- 小马工具激活的win10与正版win10有何区别