首先我们从一道判断题开始: String s1 = "hello"; String s2 = "world"; String s = "helloworld"; String s3 = "hello" + "world"; String s4 = s1 + "world"; St…
字符串与基本数据类型 将数字字符串转换为基本数据类型 String s = "30"; int n = Integer.parseInt(s); double n2 = Double.parseDouble(s); 将基本数组类型转换为字符串 String s1 = String.valueOf(32); String s2 = String.valueOf(32.23); S…
String/StringBuffer/StringBuilder的区别 String:不可变的字符序列 StringBuffer:可变的字符序列,线程安全,效率低 StringBuilder:可变的字符序列,线程不安全,效率高 它们的共同点是底层都是用char[]存储的。 StringBuilder常用方法 StringBuffer与StringBuilder用法几乎完全一致,区别就在于一个线程…