Chapter 6字符串--- 初始化,字符串操作 (29th,Feb)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Chapter 6字符串--- 初始化,字符串操作 (29th,Feb)相关的知识,希望对你有一定的参考价值。
public static void main(String[] args) { //String String str = "字符串常量字符串常量"; String str1 = new String("字符串常量"); //构造方法 String str2 = new String("字符串常量"); //new 开辟新的内存空间 String str3 = "字符串常量"; System.out.println("str="+str); System.out.println("str1="+str1); System.out.println("str2="+str2); char[]c=new char[]{‘我‘,‘很‘,‘好‘}; String str4=new String(c); System.out.println("str4="+str4);
// “==”运算,比较的是内存地址是否相等 System.out.println("str1=str2:"+(str1==str2)); System.out.println("str1=str:"+(str1==str)); System.out.println("str=str2:"+(str==str2)); System.out.println("str=str3:"+(str==str3)); System.out.println("str1=str2:"+str1.equals(str2)); System.out.println("str1=str:"+str1.equals(str));
//字符串信息 //字符串长度 System.out.println("字符串长度="+str.length()); //从前往后查找字符串中,子字符串的位置,返回找到之后的首字的索引值 System.out.println("常字的位置:"+str.indexOf("常")); System.out.println("常量的位置:"+str.indexOf("常量")); //查找不到,返回值-1 System.out.println("我的位置:"+str.indexOf("我")); //从后往前查找字符串中,子字符串的位置,返回找到 的首字的索引值 System.out.println("最后的常字的位置:"+str.lastIndexOf("常"));
//获取字符 char c1=str.charAt(4); System.out.println("c1="+c1);
以上是关于Chapter 6字符串--- 初始化,字符串操作 (29th,Feb)的主要内容,如果未能解决你的问题,请参考以下文章