一、lang包
java.lang
包是java语言(language)内置的一个最基础的包,其中包含了一系列程序中经常要用到的类。
在默认情况下,每个java程序都会自动导入该包,因此无需在程序中显式地声明;它是唯一一个无需显示声明就默认导入的包。
使用原始数据类型声明的变量,如:
int num = 10;
这里的num只是一个变量,而不是对象。
在某些必须操作对象的场合,这样的变量就不能使用了。
lang包的工具有:
- 包装类工具
- 字符串工具
- 字符串增强工具
- 数学工具(随机数产生工具)
- Object工具类
toString
finalize方法 - Class工具
二、包装类
Java提供一系列包装类,以便将原始数据类型当作对象进行操作。
- 可以完成基本类型和引用类型的相互转换。
- 还可以提供特殊的工具方法,来完成某些特定的功能。
在java.lang包中,对于每个原始数据类型都有一个相应的包装类。
例:
package test;
public class TestPackageClass {
public static void main(String[] args) {
// int -> Integer
int a = 5;
Integer b = new Integer(a);
// Integer -> int
int c = b.intValue();
String d = "25";
// String -> Integer
Integer e1 = new Integer(d);
Integer e2 = Integer.valueOf(d);
// String -> int
int f1 = Integer.parseInt(d);
int f2 = Integer.valueOf(d).intValue();
// int -> String
String g1 = a + "";
String g2 = Integer.toString(a);
String g3 = String.valueOf(a);
}
}
三、String
String s = "hello world";
String s = new String("hello world");
Char[] ch = {'h', 'e', 'l', 'l', 'o'};
String s = new String(ch);
byte[] buf = {97, 98, 99, 100, 101};
String s = new String(buf);
1、长度
package test;
public class TestString {
public static void main(String[] args) {
String a = "abcbdge";
// 长度:
System.out.println("a字符串的长度:" + a.length());
}
}
2、比较
(1)equals和==
引用放在栈区中,内容放在堆区中。
例:
package test;
public class TestString {
public static void main(String[] args) {
String str1 = "hello";
String str2 = "hello";
String str3 = new String("world");
String str4 = new String("world");
if(str1 == str2) {
System.out.println("str1和str2指向同一个字符串");
} else {
System.out.println("str1和str2指向不同的字符串");
}
if(str1.equals(str2)) {
System.out.println("str1和str2的内容完全相同");
} else {
System.out.println("str1和str2的内容不相同");
}
if(str3 == str4) {
System.out.println("str3和str4指向同一个字符串");
} else {
System.out.println("str3和str4指向不同的字符串");
}
if(str3.equals(str4)) {
System.out.println("str3和str4的内容完全相同");
} else {
System.out.println("str3和str4的内容不相同");
}
}
}
(2)比较大小写不同的字符串
例:
package test;
public class TestString {
public static void main(String[] args) {
String str1 = "Java";
String str2 = "java";
// 1、忽略大小写比较
if(str1.equalsIgnoreCase(str2)) {
System.out.println("你学的语言相同");
} else {
System.out.println("你学的语言不同");
}
// 2、都转换为大写
if(str1.toUpperCase().equals(str2.toUpperCase())) {
System.out.println("你学的语言相同");
} else {
System.out.println("你学的语言不同");
}
// 3、都转换为小写
if(str1.toLowerCase().equals(str2.toLowerCase())) {
System.out.println("你学的语言相同");
} else {
System.out.println("你学的语言不同");
}
}
}
(3)按字典顺序比较两个字符串
public int compareTo(String anotherString)
public int compareToIgnoreCase(String str)
3、连接/拼接
package test;
public class TestString {
public static void main(String[] args) {
String str1 = "I";
String str2 = " love";
String str3 = " you";
// 方法1:
System.out.println(str1.concat(str2).concat(str3));
// 方法2:
System.out.println(str1+str2+str3);
}
}
4、搜索
搜素某个字符/某个子串在字符串中出现的位置。
例:
package test;
public class TestString {
public static void main(String[] args) {
String a = "ablovecblovedge";
System.out.println(a.indexOf('b'));
System.out.println(a.lastIndexOf('b'));
System.out.println(a.indexOf("love"));
System.out.println(a.lastIndexOf("love"));
}
}
5、提取
例:
package test;
public class TestString {
public static void main(String[] args) {
String str = " I love you ";
System.out.println(str.charAt(2));
System.out.println(str.substring(2));
System.out.println(str.substring(2, 7));
System.out.println(str.replace('o', 's'));
System.out.println(str.trim());
}
}
6、数据格式转化
在某些特定的场合,我们可能需要将字符串转化成其它格式的数据进行操作。
例:
package test;
public class TestString {
public static void main(String[] args) {
String str = " I love you ";
System.out.println(str.getBytes());
System.out.println(str.toCharArray());
}
}
例:
package test;
public class TestString {
public static void main(String[] args) {
String str = " I love you ";
System.out.println(str.getBytes());
// 字符串->字符数组
char[] ch = str.toCharArray();
for (int i = 0; i < ch.length; i++) {
System.out.println(ch[i]);
}
// 字符数组->字符串
char[] love = {'l', 'o', 'v', 'e'};
String love2= new String(love);
// 字符串数组->字符串:只能通过循环
String[] str1 = {"I", "love", "you"};
StringBuffer sb = new StringBuffer();
for (int i = 0; i < str1.length; i++) {
sb.append(str1[i]);
}
String str2 = sb.toString();
// 数组的长度:length 字符串的长度:length()
int a = love.length;
int b = love2.length();
}
}