博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java12.API
阅读量:4981 次
发布时间:2019-06-12

本文共 2395 字,大约阅读时间需要 7 分钟。

day12

面试题
  String s1 = "abc";
  String s2 = "abc";
  System.out.println(s1 == s2); //true 比较的是地址,如果常量池中已经有了"abc"字符串,那么就直接将该字符串地址给s2而不是新建
  System.out.println(s1.equals(s2)); //true 比较的是属性值,相等的
  
  String s1 = new String("abc"); //新建2个对象,一个是常量池中的"abc"一个是String对象
*/  
  /*String s1 = new String("abc");   
  String s2 = "abc";
  System.out.println(s1 == s2);  //false 因为new的对象进堆内存,不是常量池中的"abc"因而地址也不同
  System.out.println(s1.equals(s2)); //true 比较的是属性值,相等的
*/ 
 /* String s1 = "a" + "b" + "c";
  String s2 = "abc";
  System.out.println(s1 == s2);   //true 常量优化机制,s1编译的时候就变成"abc"了~
  System.out.println(s1.equals(s2)); //true
*/  
  /* String s1 = "ab";    //常量池的地址
   String s2 = "abc";    //常量池的地址
   String s3 = s1 + "c";   //先创建StringBuffer对象,ToString对象的地址赋给s3,s3存着的地址是堆里的地址
   System.out.println(s3 == s2); //false 
   System.out.println(s3.equals(s2)); //true 
*/

String构造函数:

 * public String():空构造
 * public String(byte[] bytes):把字节数组转成字符串
 * public String(byte[] bytes,int index,int length):把字节数组的一部分(从索引index开始以length为长度)转成字符串
 * public String(char[] value):把字符数组转成字符串
 * public String(char[] value,int index,int count):把字符数组的一部分转成字符串
 * public String(String original):把字符串常量值转成字符串 

空串和null的区别:空串("")是一个字符串常量同时也是一个String类的对象,既然是对象当然可以调用String类中的方法

 null是空常量,不能调用任何的方法,否则会出现空指针异常,null常量可以给任意的引用数据类型赋值

String常用方法:

1.判断:
 * boolean equals(Object obj):比较字符串的内容是否相同,区分大小写
 * boolean equalsIgnoreCase(String str):比较字符串的内容是否相同,忽略大小写
 * boolean contains(String str):判断大字符串中是否包含小字符串
 * boolean startsWith(String str):判断字符串是否以某个指定的字符串开头
 * boolean endsWith(String str):判断字符串是否以某个指定的字符串结尾
 * boolean isEmpty():判断字符串是否为空。

2.获取 

 * int length():获取字符串的长度。
 * char charAt(int index):获取指定索引位置的字符
 * int indexOf(int ch):返回指定字符在此字符串中第一次出现处的索引。
 * int indexOf(String str):返回指定字符串在此字符串中第一次出现处的索引。
 * int indexOf(int ch,int fromIndex):返回指定字符在此字符串中从指定位置后第一次出现处的索引。
 * int indexOf(String str,int fromIndex):返回指定字符串在此字符串中从指定位置后第一次出现处的索引。
 * lastIndexOf(int ch,int fromIndex)
 * lastIndexOf(String str,int fromIndex)
 * String substring(int start):从指定位置开始截取字符串,默认到末尾。
 * String substring(int start,int end):从指定位置开始到指定位置结束截取字符串。

3.转换:

 * byte[] getBytes():把字符串转换为字节数组。
 * char[] toCharArray():把字符串转换为字符数组。
 * static String valueOf(char[] chs):把字符数组转成字符串。
 * static String valueOf(int i):把int类型的数据转成字符串。
  * 注意:String类的valueOf方法可以把任意类型的数据转成字符串。
 * String toLowerCase():把字符串转成小写。(了解)
 * String toUpperCase():把字符串转成大写。
 * String concat(String str):把字符串拼接。

转载于:https://www.cnblogs.com/meng726477179/p/5758276.html

你可能感兴趣的文章
洛谷P1047 校门外的树
查看>>
PostgreSQL 9.5,带来 UPSERT 等新特性
查看>>
[转][C#][WebApi]
查看>>
[转]NSIS:使用SectionSetFlags根据不同环境自动勾选特定区段
查看>>
一个五位数ABCDE乘以9,得到EDCBA,求此五位数
查看>>
数据库基本常识【总结】
查看>>
iOS8以后自动计算cell的高度
查看>>
forever 使用
查看>>
Ubuntu PostgreSQL安装和配置(转, 自己学习记录,版权归原作者)
查看>>
python的运算符及优先级与python的表达式
查看>>
挂FORM时找不到对应的功能(function)
查看>>
数论的一点前置知识
查看>>
IDEA修改git账号及密码的方法 ----绝壁好使
查看>>
现代软件工程团队项目阿尔法阶段_版本上线_2018.01.09
查看>>
《Qt编程的艺术》——5.1 手动布局
查看>>
win7下无法安装QTP-少了Microsoft Visual c++2005 sp1运行时组件
查看>>
iPhone开发笔记[10/50]:调用initWithNibName方法时不能写上.xib
查看>>
Palindrome subsequence(区间dp+容斥)
查看>>
三、WebView网络显示控件
查看>>
ASP.NET MVC 给ViewBag赋值Html字符转义问题
查看>>