全国旗舰校区

不同学习城市 同样授课品质

北京

深圳

上海

广州

郑州

大连

武汉

成都

西安

杭州

青岛

重庆

长沙

哈尔滨

南京

太原

沈阳

合肥

贵阳

济南

下一个校区
就在你家门口
+
当前位置:首页  >  技术干货

Java-String的常用方法总结

发布时间:2019-08-29 14:45:00
发布人:小锋

  一、String类

  String类在java.lang包中,java使用String类创建一个字符串变量,字符串变量属于对象。java把String类声明的final类,不能继承。String类对象创建后不能修改,由0或多个字符组成,包含在一对双引号之间。

  二、String类构造方法

  1、public String()

  无参构造方法,用来创建空字符串的String对象。

  String str1 = new String();

  String str2 = new String("asdf");

  2、public String(String value)

  String str2 = new String("asdf");

  3、public String(char[] value)

  char[] value = {'a','b','c','d'};

  String str4 = new String(value);

  4、public String(char chars[], int startIndex, int numChars)

  char[] value = {'a','b','c','d'};

  String str5 = new String(value, 1, 2);

  5、public String(byte[] values)

  byte[] strb = new byte[]{65,66};

  String str6 = new String(strb);

  三、String类常用方法

  1、public char charAt(int index)

  参数

  index -- 字符的索引。

  返回值

  返回指定索引处的字符。

  实例

  public class Test {

  public static void main(String args[]) {

  String s = "www ";

  char result = s.charAt(1);

  System.out.println(result);

  }

  }

  以上程序执行结果为:

  w

  2、public boolean equals(Object anObject)

  参数

  anObject -- 与字符串进行比较的对象。

  返回值

  如果给定对象与字符串相等,则返回 true;否则返回 false。

  实例

  public class Test {

  public static void main(String args[]) {

  String Str1 = new String("run");

  String Str2 = Str1;

  String Str3 = new String("run");

  boolean retVal;

  retVal = Str1.equals( Str2 );

  System.out.println("返回值 = " + retVal );

  retVal = Str1.equals( Str3 );

  System.out.println("返回值 = " + retVal );

  }

  }

  以上程序执行结果为:

  返回值 = true

  返回值 = true

  3、public boolean endsWith(String suffix)

  endsWith() 方法用于测试字符串是否以指定的后缀结束。

  参数

  suffix -- 指定的后缀。

  返回值

  如果参数表示的字符序列是此对象表示的字符序列的后缀,则返回 true;否则返回 false。注意,如果参数是空字符串,或者等于此 String 对象(用 equals(Object) 方法确定),则结果为 true。

  实例

  public class Test {

  public static void main(String args[]) {

  String Str = new String("runooo");

  boolean retVal;

  retVal = Str.endsWith( "run" );

  System.out.println("返回值 = " + retVal );

  retVal = Str.endsWith( "ooo" );

  System.out.println("返回值 = " + retVal );

  }

  }

  以上程序执行结果为:

  返回值 = false

  返回值 = true

  4、public boolean equalsIgnoreCase(String anotherString)

  equalsIgnoreCase() 方法用于将字符串与指定的对象比较,不考虑大小写。

  参数

  anObject -- 与字符串进行比较的对象。

  返回值

  如果给定对象与字符串相等,则返回 true;否则返回 false。

  public class Test {

  public static void main(String args[]) {

  String Str1 = new String("run");

  String Str2 = Str1;

  String Str3 = new String("run");

  String Str4 = new String("RUN");

  boolean retVal;

  retVal = Str1.equals( Str2 );

  System.out.println("返回值 = " + retVal );

  retVal = Str3.equals( Str4);

  System.out.println("返回值 = " + retVal );

  retVal = Str1.equalsIgnoreCase( Str4 );

  System.out.println("返回值 = " + retVal );

  }

  }

  以上程序执行结果为:

  返回值 = true

  返回值 = false

  返回值 = true

  5、public String replace(char oldChar,char newChar)

  replace() 方法通过用 newChar 字符替换字符串中出现的所有 oldChar 字符,并返回替换后的新字符串。

  参数

  oldChar -- 原字符。

  newChar -- 新字符。

  返回值

  替换后生成的新字符串。

  public class Test {

  public static void main(String args[]) {

  String Str = new String("hello");

  System.out.print("返回值 :" );

  System.out.println(Str.replace('o', 'T'));

  System.out.print("返回值 :" );

  System.out.println(Str.replace('l', 'D'));

  }

  }

  以上程序执行结果为:

  返回值 :hellT

  返回值 :heDDo

  6、public String toLowerCase()

  toLowerCase() 方法将字符串转换为小写。

  参数

  无

  返回值

  转换为小写的字符串。

  public class Test {

  public static void main(String args[]) {

  String Str = new String("WWW");

  System.out.print("返回值 :" );

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

  }

  }

  以上程序执行结果为:

  返回值 :www

相关文章

为什么公司内同级别的管理岗要比技术岗收入高?

为什么公司内同级别的管理岗要比技术岗收入高?

2023-10-14
如何删除需要使用管理员权限才能删除的文件?

如何删除需要使用管理员权限才能删除的文件?

2023-10-14
有什么好用的redis可视化管理工具?

有什么好用的redis可视化管理工具?

2023-10-14
有哪些好用的时间效率管理工具和方法?

有哪些好用的时间效率管理工具和方法?

2023-10-14

最新文章

常见网络安全面试题:Windows常用的命令有哪些?

常见网络安全面试题:Windows常用的命令有哪些?

2023-10-09
常见网络安全面试题:根据设备告警如何展开排查?

常见网络安全面试题:根据设备告警如何展开排查?

2023-10-09
常见网络安全面试题:mysql加固呢?(数据库加固)

常见网络安全面试题:mysql加固呢?(数据库加固)

2023-10-09
常见网络安全面试题:windows和linux加固?(操作系统加固)

常见网络安全面试题:windows和linux加固?(操作系统加固)

2023-10-09
在线咨询 免费试学 教程领取