我是靠谱客的博主 威武长颈鹿,最近开发中收集的这篇文章主要介绍java中 string的endwith_Java String endsWith()用法及代码示例,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Java字符串endsWith()方法检查字符串是否以指定的后缀结尾。此方法返回布尔值true或false。

签名:

public boolean endsWith(String suff)

参数:

suff- specified suffix part

返回:

true or false

例:展示endsWith()方法的用法原理

// Java program to demonstrate

// working of endsWith() method

class Gfg1 {

public static void main(String args[])

{

String s = "Welcome! to GeeksforGeeks";

// Output will be true as s ends with Geeks

boolean gfg1 = s.endsWith("Geeks");

System.out.println(gfg1);

}

}

输出:

true

// Java program to demonstrate

// working of endsWith() method

class Gfg2 {

public static void main(String args[])

{

String s = "Welcome! to GeeksforGeeks";

// Output will be false as s does not

// end with "for"

boolean gfg2 = s.endsWith("for");

System.out.println(gfg2);

}

}

输出:

false

// Java program to demonstrate

// working of endsWith() method

class Gfg3 {

public static void main(String args[])

{

String s = "Welcome! to GeeksforGeeks";

// Output will be true if the argument

// is the empty string

boolean gfg3 = s.endsWith("");

System.out.println(gfg3);

}

}

输出:

true

最后

以上就是威武长颈鹿为你收集整理的java中 string的endwith_Java String endsWith()用法及代码示例的全部内容,希望文章能够帮你解决java中 string的endwith_Java String endsWith()用法及代码示例所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(57)

评论列表共有 0 条评论

立即
投稿
返回
顶部