0%

Java(8)String类

String 类

  • 字符串的特点:

    1. 字符串的内容永不可变。【重点】
    1. 整数因为字符串不可改变,所以字符串是可以共享使用的。
    1. 字符串效果上相当于是char[]字符数组,但是底层原理是byte[]字节数组。

字符串的创建

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.tipdm.demo04;

/**
* java.lang.String 类代表字符串
* API文档中说:Java 程序中的所有字符串字面值(如 "abc" )都作为此类的实例实现。
* 其实就是说:程序当中所有的双引号字符串,都是String类的对象。(就算没有new,也照样是。)
* 字符串的特点:
* 1. 字符串的内容永不可变。【重点】
* 2. 整数因为字符串不可改变,所以字符串是可以共享使用的。
* 3. 字符串效果上相当于是char[]字符数组,但是底层原理是byte[]字节数组。
*
* 创建字符串的常见3+1种方式。
* 三种构造方法:
* public String(): 创建一个空白字符串,不含有任何内容。
* public String(char[] array): 根据字符数组的内容,来创建对应的字符串。
* public String(byte[] array): 根据字节数组的内容,来创建对应的字符串。
* 一种直接创建:
* String str = "Hello";
*/
public class demo1 {
public static void main(String[] args) {
// 使用空参构造
String str1 = new String(); // 小括号留空,说明字符串说明内容也没有
System.out.println("第1个字符串:" + str1);

// 根据字符数组创建字符串
char[] charArray = {'A', 'B', 'C'};
String str2 = new String(charArray);
System.out.println("第2个字符串:" + str2);

// 根据字节数组创建字符串
byte[] byteArray = {97, 98, 99};
String str3 = new String(byteArray);
System.out.println("第3个字符串:" + str3);

// 直接创建
String str4 = "Hello";
System.out.println("第4个字符串:" + str4);
}
}
1
2
3
4
5
6
第1个字符串:
第2个字符串:ABC
第3个字符串:abc
第4个字符串:Hello

进程已结束,退出代码0

字符串常量池

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.tipdm.demo04;

/**
* 字符串常量池:程序当中直接写上的双引号字符串,就在字符串常量池中。
* new的字符串不在常量池当中。
*
* 对于基本类型来说,==是进行数值的比较。
* 对于引用类型来说,==是进行【地址值】的比较
*/
public class demo2 {
public static void main(String[] args) {
String str1 = "abc";
String str2 = "abc";

char[] charArray = {'a', 'b', 'c'};
String str3 = new String(charArray);

System.out.println(str1 == str2); // true
System.out.println(str1 == str3); // false
System.out.println(str3 == str2); // false
}
}
1
2
3
4
5
true
false
false

进程已结束,退出代码0

字符串的比较

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.tipdm.demo04;

/**
* == 是进行对象的地址值比较,如果确实需要字符串的内容比较,可以使用两个方法:
* public boolean equals(Object pbj):参数可以是任何对象,只有参数是一个字符串并且内容相同的才会给true;否则会返回false
* 注意事项:
* 1. 任何对象都能用Object进行接收。
* 2. equals方法具有对称性,也就是a.equals(b)和b.equals(a)效果一样。
* 3. 如果比较双方一个常量一个变量,推荐把常量字符串写在前面。
* 推荐:“abc”.equals(str) 不推荐:str.equals("abc")
*
* public boolean equalsIgnoreCase(String str):忽略大小写,进行内容比较。
*/
public class demo3 {
public static void main(String[] args) {
String str1 = "Hello";
String str2 = "Hello";
char[] charArr = {'H', 'e', 'l', 'l', 'o'};
String str3 = new String(charArr);
System.out.println(str1.equals(str2)); //true
System.out.println(str1.equals(str3)); // true
System.out.println(str2.equals(str3)); // true
System.out.println(str3.equals("Hello")); // true
System.out.println("Hello".equals(str2)); // true
System.out.println("hello".equals("Hello")); // false
System.out.println("hello".equalsIgnoreCase("Hello")); //true

System.out.println("===========");
String str5 = null;
System.out.println("abc".equals(str5));
// System.out.println(str5.equals("abc")); // 这样就会报错
System.out.println("===========");


}
}
1
2
3
4
5
6
7
8
9
10
11
12
true
true
true
true
true
false
true
===========
false
===========

进程已结束,退出代码0

字符串的常用方法

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.tipdm.demo04;

/**
* String当中与获取相关的常用方法有:
* public int length(): 获取字符串当中含有的字符个数,拿到字符串长度。
* public String concat(String str): 将当前字符串和参数字符串拼接称为返回值新的字符串。
* public char charAt(int inddex): 获取指定索引位置的单个字符
* public int indexOf(String str): 查找参数字符串在本字符当中首次出现的索引位置,如果没有返回-1值。
*/
public class demo4 {
public static void main(String[] args) {
// 获取字符串的长度
int length = "asdjksadj".length();
System.out.println("字符串的长度是:" + length);

// 拼接字符串
String str1 = "Hello";
String str2 = "World";
String str3 = str1.concat(str2);
System.out.println(str1); // Hello,原封不动
System.out.println(str2); // World,原封不动
System.out.println(str3); // HelloWorld,新的字符串

// 获取指定索引位置的单个字符
char ch = "Hello".charAt(1);
System.out.println("在1号索引位置的字符是:" + ch);

// 查找参数字符串在本来字符串当中出现的第一次索引位置
// 如果根本没有,返回-1值
String original = "HelloWorld";
int index = original.indexOf("llo");
System.out.println("第一次的索引是:" + index); // 2

System.out.println("HelloWorld".indexOf("abc")); // -1
}
}
1
2
3
4
5
6
7
8
9
字符串的长度是:9
Hello
World
HelloWorld
在1号索引位置的字符是:e
第一次的索引是:2
-1

进程已结束,退出代码0

字符串的截取

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.tipdm.demo04;

/**
* 字符串的截取方法:
* public string substring(int index): 截取从参数位置一直到字符串末尾,返回新字符串。
* public string substring(int begin, int end): 截取从begin开始,一直到end结束,中间的字符串。
* 备注:[begin, end),包含左边不包含右边。
*/
public class demo5 {
public static void main(String[] args) {
String str1 = "HelloWorld";
String str2 = str1.substring(5);
System.out.println(str1); // HelloWorld,原封不动
System.out.println(str2); // World, 新字符串
System.out.println("===================");
String str3 = str1.substring(4,7);
System.out.println(str3); // oWo
System.out.println("===================");

// 下面这种写法,字符串的内容仍然是没有改变的
// 下面有两个字符串:"Hello", "Java"
// strA当中保存的是地址值。
// 本来地址值是Hello的0x666
// 后来地址值变为了0x999
String strA = "Hello";
System.out.println(strA);
strA = "Java";
System.out.println(strA);
}
}
1
2
3
4
5
6
7
8
9
HelloWorld
World
===================
oWo
===================
Hello
Java

进程已结束,退出代码0

字符串的转换

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package com.tipdm.demo04;

/**
* String当中与转换相关的常用方法有:
* public char[] toCharArray():将当前字符串拆分成为字符数组作为返回值。
* public byte[] getBytes(): 获得当前字符串底层的字节数组。
* public String replace(CharSequence oldString, CharSequence newString):
* 将所有出现的老字符串替换称为新的字符串,返回替换之后的结果新字符串。
* 备注:charSequence意思就是说可以接收字符串类型。
*/
public class demo6 {
public static void main(String[] args) {
// 转换称为字符数组
char[] chars = "Hello".toCharArray();
System.out.println(chars[0]); // H
System.out.println(chars.length); // 5
System.out.println("==================");

// 转换称为字节数组
byte[] bytes = "abc".getBytes();
for (int i = 0; i < bytes.length; i++) {
System.out.println(bytes[i]);
}
System.out.println("==================");

String str = null;
String str1 = "How do you do?";
String str2 = str1.replace("o", "*");
System.out.println(str1); // How do you do?
System.out.println(str2); // H*w d* y*u d*?
System.out.println("==================");

String lang1 = "会不会玩?你大爷的!";
String lang2 = lang1.replace("你大爷的!", "******");
System.out.println(lang1);
System.out.println(lang2);
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
H
5
==================
97
98
99
==================
How do you do?
H*w d* y*u d*?
==================
会不会玩?你大爷的!
会不会玩?******

进程已结束,退出代码0

分割字符串

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.tipdm.demo04;

/**
* 分割字符串的方法:
* public String[] split(String regex): 按照参数的规则,将字符串切分成为若干部分
*
* 注意事项:
* split方法的参数其实是一个正则表达式
* 如果按照英文句点“.”进行切分,必须写\\.进行转义
*/
public class demo7 {
public static void main(String[] args) {
String str1 = "aaa,bbb,ccc";
String[] array1 = str1.split(",");
for (int i = 0; i < array1.length; i++) {
System.out.println(array1[i]);
}
System.out.println("================");

String str2 = "aaa bbb ccc";
String[] array2 = str2.split(" ");
for (int i = 0; i < array2.length; i++) {
System.out.println(array2[i]);
}
System.out.println("================");

String str3 = "XXX.YYY.ZZZ";
String[] array3 = str3.split("\\."); // 需要转义
for (int i = 0; i < array3.length; i++) {
System.out.println(array3[i]);
}
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
aaa
bbb
ccc
================
aaa
bbb
ccc
================
XXX
YYY
ZZZ

进程已结束,退出代码0

题目:定义一个方法,把数组{1,2,3}按照指定格式拼接成一个字符串。格式参照如下:[word1#word2#word3]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.tipdm.demo04;

/**
* 定义一个方法,把数组{1,2,3}按照指定格式拼接成一个字符串。格式参照如下:[word1#word2#word3]
*/
public class demo8 {
public static void main(String[] args) {
int[] array1 = {1, 2, 3, 6, 5, 8};
String res = getString(array1);
System.out.println(res);
}

public static String getString(int[] arrayInt){
String res = "[";
for (int i = 0; i < arrayInt.length; i++) {
if (i != arrayInt.length - 1){
res = res + "word" + arrayInt[i] + "#";
}else{
res = res + "word" + arrayInt[i] + "]";
}
}
return res;
}
}
1
2
3
[word1#word2#word3#word6#word5#word8]

进程已结束,退出代码0

题目:键盘输入一个字符串,并且统计其中各种字符出现的次数。

  • 种类有:大写字母、小写字母、数字、其他
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.tipdm.demo04;

import java.util.Scanner;

/**
* 题目:键盘输入一个字符串,并且统计其中各种字符出现的次数。
* 种类有:大写字母、小写字母、数字、其他
*/
public class demo9 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String str = sc.next();
char[] charArr = str.toCharArray();
int upperNum = 0;
int lowerNum = 0;
int Num = 0;
int otherNum = 0;
for (int i = 0; i < charArr.length; i++) {
if(charArr[i] >= 48 && charArr[i] <= 57){ // '0' ASCII表中对应48
Num++;
}else if(charArr[i] >= 65 && charArr[i] <= 90){ // 'A' ASCII表中对应65
upperNum++;
}else if(charArr[i] >=97 && charArr[i] <= 122){ // 'a' ASCII表中对于97
lowerNum++;
}else{
otherNum++;
}
}
System.out.println("大写字母数量:" + upperNum);
System.out.println("小写字母数量:" + lowerNum);
System.out.println("数字数量:" + Num);
System.out.println("其他字符数量:" + otherNum);
}
}
1
2
3
4
5
6
7
hsjdakhacjhkj123fsd6x7c46sad*/d*as
大写字母数量:0
小写字母数量:24
数字数量:7
其他字符数量:3

进程已结束,退出代码0
-------------本文结束感谢您的阅读-------------