java字符串操作有哪些

java中的字符串操作有:length()函数,计算字符串的长度;2.isEmpty()函数,判断字符串是否为空;3.concat()函数,将指定的字符串参数连接到字符串;4.hashCode()函数,返回字符串的哈希码;

java字符串操作有哪些

java中的字符串操作有以下几种

1.length()函数

java中length()函数的作用是用于计算字符串的长度。

String Str = new String("Hello world!");

System.out.println(Str.length()); //返回 12

2.isEmpty()函数

java中isEmpty()函数的作用是用于判断字符串是否为空。

String myStr1 = "Runoob";

String myStr2 = "";

System.out.println(myStr1.isEmpty()); //返回 false

System.out.println(myStr2.isEmpty()); //返回 true

3.concat()函数

java中concat()函数的作用是用于将指定的字符串参数连接到字符串中。

String s = "Hello";

s = s.concat(" world!");

System.out.println(s);

输出结果为:

Hello world!

4.hashCode()函数

java中hashCode()函数的作用是用于返回字符串的哈希码。

String Str = new String("Hello world!");

System.out.println(Str.hashCode());

我们的服务
专业提供中小企业网站建设.公司网站建设.外贸网站建设.营销型网站建设,响应式网站建设,商城网站定制,手机网站,微信小程序定制.php应用开发服务,公司成立于2014年,8年专注网站建设,秉承“以客户为根本,以科技为核心,以市场为导向”的经营理念;服务电话13714666846(微信同号)

声明:本站所有作品(图文、音视频)均由用户自行上传分享,或互联网相关知识整合,仅供网友学习交流,若您的权利被侵害,请联系 管理员 删除。

本文链接:http://news.ew35.com/