java 中 string常用方法及相关的例子

        我将为您详细讲解 Java 中 `String` 类的常用方法及其相关例子。`String` 类是 Java 中最常用的类之一,它代表字符串,提供了许多用于操作字符串的方法。


        1. 字符串比较
- `equals(Object obj)`: 比较字符串的内容是否相等。
- `equalsIgnoreCase(String str)`: 比较字符串的内容是否相等,不区分大小写。
        例子 1:字符串比较


public class StringExample {public static void main(String[] args) {String str1 = "Hello";String str2 = "hello";String str3 = "Hello World";System.out.println(str1.equals(str2)); // 输出: falseSystem.out.println(str1.equalsIgnoreCase(str2)); // 输出: trueSystem.out.println(str1.equals(str3)); // 输出: false}
}


        2. 字符串查找
- `indexOf(int ch)`: 查找指定字符在字符串中的第一次出现的位置。
- `indexOf(int ch, int fromIndex)`: 从指定位置开始查找指定字符在字符串中的第一次出现的位置。
- `lastIndexOf(int ch)`: 查找指定字符在字符串中的最后一次出现的位置。
- `lastIndexOf(int ch, int fromIndex)`: 从指定位置开始查找指定字符在字符串中的最后一次出现的位置。
        例子 2:字符串查找


public class StringExample {public static void main(String[] args) {String str = "Hello World";System.out.println(str.indexOf('l')); // 输出: 3System.out.println(str.indexOf('l', 4)); // 输出: 7System.out.println(str.lastIndexOf('l')); // 输出: 7System.out.println(str.lastIndexOf('l', 6)); // 输出: 3}
}


        3. 字符串替换
- `replace(CharSequence target, CharSequence replacement)`: 将字符串中的指定字符序列替换为另一个字符序列。
- `replace(char oldChar, char newChar)`: 将字符串中的指定字符替换为另一个字符。
        例子 3:字符串替换


public class StringExample {public static void main(String[] args) {String str = "Hello World";System.out.println(str.replace("World", "Java")); // 输出: Hello JavaSystem.out.println(str.replace('l', 'x')); // 输出: Hexxo World}
}


        4. 字符串切割
- `split(String regex)`: 使用正则表达式将字符串分割成子字符串数组。
- `split(String regex, int limit)`: 使用正则表达式将字符串分割成子字符串数组,最多不超过指定数量。
        例子 4:字符串切割


public class StringExample {public static void main(String[] args) {String str = "Hello World";String[] words = str.split(" "); // 输出: [Hello, World]String[] wordsLimit = str.split(" ", 1); // 输出: [Hello]}
}


        5. 字符串截取
- `substring(int beginIndex)`: 返回指定位置开始到字符串末尾的子字符串。
- `substring(int beginIndex, int endIndex)`: 返回指定位置开始到指定位置结束的子字符串。
        例子 5:字符串截取


public class StringExample {public static void main(String[] args) {String str = "Hello World";System.out.println(str.substring(7)); // 输出: WorldSystem.out.println(str.substring(7, 11)); // 输出: World}
}

        6. 字符串连接
- `concat(String str)`: 将指定字符串连接到当前字符串的末尾。
         例子 6:字符串连接


public class StringExample {public static void main(String[] args) {String str1 = "Hello";String str2 = "World";System.out.println(str1.concat(str2)); // 输出: HelloWorld}
}


        7. 字符串长度
- `length()`: 返回字符串的长度。
        例子 7:字符串长度


public class StringExample {public static void main(String[] args) {String str = "Hello World";System.out.println(str.length()); // 输出: 11}
}


        8. 字符串转换
- `toLowerCase()`: 将字符串中的所有字符转换为小写。
- `toUpperCase()`: 将字符串中的所有字符转换为大写。
- `trim()`: 移除字符串首尾的空格。
         例子 8:字符串转换


public class StringExample {public static void main(String[] args) {String str = "  Hello World  ";System.out.println(str.toLowerCase()); // 输出: hello worldSystem.out.println(str.toUpperCase()); // 输出: HELLO WORLDSystem.out.println(str.trim()); // 输出: Hello World}
}


        9. 字符串比较器
- `compareTo(String anotherString)`: 按照字典顺序比较两个字符串。
- `compareToIgnoreCase(String str)`: 按照字典顺序比较两个字符串,不区分大小写。
        例子 9:字符串比较器


public class StringExample {public static void main(String[] args) {String str1 = "Hello";String str2 = "world";System.out.println(str1.compareTo(str2)); // 输出: 正数System.out.println(str1.compareToIgnoreCase(str2)); // 输出: 0}
}


        10. 字符串值比较
- `equalsValueOf(CharSequence cs)`: 比较两个字符串的值是否相等。
        例子 10:字符串值比较


public class StringExample {public static void main(String[] args) {String str1 = "Hello";String str2 = "hello";System.out.println(str1.equalsValueOf(str2)); // 输出: true}
}


        11. 字符串查找器
- `find()`: 在字符串中查找指定的字符序列。
        例子 11:字符串查找器


public class StringExample {public static void main(String[] args) {String str = "Hello World";System.out.println(str.find("World")); // 输出: 6}
}


        12. 字符串不可变性
- `String` 类的实例是不可变的,这意味着一旦创建了 `String` 对象,其值就不能更改。
        例子 12:字符串不可变性


public class StringExample {public static void main(String[] args) {String str = "Hello";str = "World"; // 创建了一个新的 String 对象,而不是修改旧的}
}


        13. 字符串的不可变性在多线程环境中的应用
- 在多线程环境中,由于 `String` 是不可变的,所以可以安全地共享 `String` 对象。
         例子 13:字符串的不可变性在多线程环境中的应用


public class StringExample {public static void main(String[] args) {String str = "Hello";// 在多线程环境中安全地共享 String 对象new Thread(() -> System.out.println(str)).start();new Thread(() -> System.out.println(str)).start();}
}


        14. 字符串的不可变性在集合中的应用
- 由于 `String` 是不可变的,因此它可以作为集合(如 `HashSet`、`TreeSet` 等)的元素,因为集合需要能够确定元素的唯一性。
        例子 14:字符串的不可变性在集合中的应用


import java.util.HashSet;
import java.util.Set;
public class StringExample {public static void main(String[] args) {Set<String> set = new HashSet<>();set.add("Hello");set.add("World");set.add("Hello"); // 不会添加重复的元素}
}


        15. 字符串的不可变性在缓存中的应用
- 在缓存实现中,经常使用 `String` 作为键,因为它们是不可变的,不会因为并发更新而产生不一致的状态。
        例子 15:字符串的不可变性在缓存中的应用


import java.util.concurrent.ConcurrentHashMap;
public class StringExample {public static void main(String[] args) {ConcurrentHashMap<String, String> cache = new ConcurrentHashMap<>();cache.put("Hello", "World");// 由于 String 是不可变的,因此可以安全地作为缓存的键}
}


        16. 字符串的不可变性在正则表达式中的应用
- 在使用正则表达式时,通常需要创建一个 `Pattern` 对象,这个对象是不可变的,可以在多个线程中共享。
        例子 16:字符串的不可变性在正则表达式中的应用


import java.util.regex.Pattern;
public class StringExample {public static void main(String[] args) {Pattern pattern = Pattern.compile("Hello");// 由于 Pattern 是不可变的,可以在多个线程中共享}
}


        总结
        Java 中的 `String` 类提供了丰富的方法来操作字符串。从字符串比较、查找、替换到截取、连接、转换,这些方法使得字符串的处理变得非常灵活和方便。字符串的不可变性在多线程编程、集合实现、缓存和正则表达式等方面都有重要的应用。通过理解和熟练使用这些方法,可以提高编程效率,并确保代码的健壮性和安全性。希望这个详细的讲解能够帮助您更好地理解 Java `String` 类的常用方法及其应用。如果您有任何问题或需要进一步的解释,请随时提问。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/725177.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

code: 500 ] This subject is anonymous - it does not have any identifying

项目场景&#xff1a; 相关背景&#xff1a; 使用idea 开发java 项目&#xff0c;前端页面请求 页面中相关的接口时&#xff0c;idea 控制台有报错信息出现&#xff0c;前端请求失败。 问题描述 问题&#xff1a; 使用idea 开发java 项目&#xff0c;前端页面请求 页面中相…

【three.js】22. Imported Models导入模型

22. Imported Models导入模型 介绍 Three.js 可以让你创建很多原始几何体&#xff0c;但是当涉及到更复杂的形状时&#xff0c;我们最好使用专用的 3D 软件建模。 在本课中&#xff0c;我们将使用已经制作好的模型&#xff0c;但我们将在以后的课程中学习如何完全在 3D 软件中…

【详识C语言】自定义类型之二:枚举

本章重点 枚举 枚举类型的定义 枚举的优点 枚举的使用 枚举 枚举顾名思义就是一一列举。 把可能的取值一一列举。 比如我们现实生活中&#xff1a; 一周的星期一到星期日是有限的7天&#xff0c;可以一一列举。 性别有&#xff1a;男、女、保密&#xff0c;也可以一一列举。…

vscode c/c++ 检测到 #include 错误。请更新 includePath。

问题背景 使用vscode打开项目后&#xff0c;头文件显示红色波浪线&#xff0c;没有引入。 检测到 #include 错误。请更新 includePath。已为此翻译单元(xxx)禁用波形曲线。 解决方法 gcc -v -E -x c - 显示所有头文件路径。 打开c_cpp_properties.json文件&#xff0c;粘贴…

【C++】类与对象(上篇)

一.类的引入 C与C语言比较起来&#xff0c;C引入了一个新的概念&#xff0c;叫做类。那么在C中&#xff0c;类又是什么呢&#xff1f; 在C中&#xff0c;类与C语言中的结构体相似&#xff0c;但不同的是&#xff0c;C中的类中&#xff0c;不仅可以定义变量&#xff0c;还能定义…

【pve】创建虚拟机

创建虚拟机 1.创建虚拟机-常规2.操作系统3. 系统4.磁盘5. cpu6.内存7.网络8.确认9.安装完成 1.创建虚拟机-常规 2.操作系统 这里选择自己的操作系统和系统的类别。 3. 系统 EFI存储选择自己磁盘 4.磁盘 调整适当的磁盘空间。 5. cpu 6.内存 根据自己的内存大小进行配…

最近开发中遇到的一些问题

puppeteer下载失败问题 使用的淘宝镜像&#xff0c;但执行命令npm i puppeteer之后&#xff0c;报错&#xff1a; npm ERR! code 1 npm ERR! path E:\项目-临时\test_install_puppeteer\node_modules\puppeteer npm ERR! command failed npm ERR! command C:\WINDOWS\system3…

cuda WSL2 无需单独安装

https://docs.nvidia.com/cuda/wsl-user-guide/index.html 这个写的很详细

TypeScript 哲学 - everyday Type

1、 2、TypeScript a structurally typed type system. 3、 type vs interface 3、literal reference 4、non-null assertion operator

微信小程序云开发教程——墨刀原型工具入门(Axure导入)

引言 作为一个小白&#xff0c;小北要怎么在短时间内快速学会微信小程序原型设计&#xff1f; “时间紧&#xff0c;任务重”&#xff0c;这意味着学习时必须把握微信小程序原型设计中的重点、难点&#xff0c;而非面面俱到。 要在短时间内理解、掌握一个工具的使用&#xf…

快速上手:剧本杀dm预约平台小程序的制作流程

在当今的娱乐市场中&#xff0c;剧本杀已经成为一种备受欢迎的娱乐方式。为了给玩家提供更好的服务和体验&#xff0c;开发一个剧本杀DM预约平台小程序是至关重要的。下面&#xff0c;我们将详细介绍如何使用乔拓云第三方平台开发这样一个预约平台。 首先&#xff0c;打开乔拓云…

软件测试需求分析如何编写?为什么要进行测试需求分析?

在软件开发的过程中&#xff0c;软件测试需求分析是至关重要的一个环节。测试需求分析是指对待测软件的需求进行全面细致的分析&#xff0c;明确软件测试的目标和范围&#xff0c;为测试活动的进行提供指导。通过对软件需求的详细分析&#xff0c;可以确保测试人员清楚了解软件…

动手学深度学习-现代循环神经网络(GRU、LSTM、编码器-解码器等)

现代循环神经网络 上一章节&#xff08;循环神经网络&#xff09;介绍了循环神经网络的基础知识&#xff0c;这种网络可以更好的处理序列数据。我们在文本数据上实现了基于循环神经网络的语言模型&#xff0c;但是对于当今各种各样的序列学习问题&#xff0c;这些技术可能不够…

网络学习:Vlan间路由

目录 一、vlan间路由实现的方法 二、精确匹配转发&#xff08;交换机&#xff09;流程 三、最长匹配转发&#xff08;路由器&#xff09; 四、交换机最长匹配转发 五、总结 一、vlan间路由实现的方法 方法1&#xff1a;使用路由器的物理接口 特点&#xff1a;在路由器上…

spring 事务失效的 12 种场景

文章目录 spring 事务失效的 12 种场景一、事务不生效1.访问权限问题2. 方法用 final 修饰3.方法内部调用&#xff08;自己玩自己&#xff09;3.1 新加一个 Service 方法3.2 在该 Service 类中注入自己3.3 通过 AopContent 类 4.Bean没有纳入Spring IOC容器管理5.多线程调用&am…

图像超分辨率:Fast Nearest Convolution for Real-Time Efficient Image Super-Resolution

9.Fast Nearest Convolution for Real-Time Efficient Image Super-Resolution 提出一种适用移动端的超分网络 一些tensor op 的推理时间 一些卷积结构的推理时间 网络结构NCNet 主干网络预测的是 残差&#xff0c;什么的残差&#xff1f; 是最近邻插值图像与 ground-truth的…

‘utf-8‘ codec can‘t decode byte 0xc1 in position 0: invalid start byte

‘utf-8’ codec can’t decode byte 0xc1 in position 0: invalid start byte 1、使用python3.6版运行django程序时报错 如图&#xff1a; 2、原因 这是由于计算机使用了中文命名。 3、解决方案 1、把计算机修改为英文名 2、在socket.py的第673行修改 name‘hello’

09-Linux部署Redis

Linux部署Redis 简介 Redis&#xff0c;全称为Remote Dictionary Server&#xff08;远程字典服务&#xff09;&#xff0c;是一个开源的、使用ANSI C语言编写的、支持网络连接的、基于内存的、同时支持持久化的日志型Key-Value数据库&#xff0c;并提供多种语言的API。 Red…

状压dp详解,棋盘式、集合型,OJ详解

文章目录 零、引例-小国王1.问题描述2.暴力枚举3.多维dp4.维度压缩 一、状压dp1.认识状压dp2.棋盘式(基于连通性)2.1小国王2.1.1题目链接2.1.2思路分析2.1.3AC代码 2.2玉米田2.2.1题目链接2.2.2思路分析2.2.3AC代码 2.3炮兵阵地2.3.1题目链接2.3.2思路分析2.3.3AC代码 2.4蒙德里…

使用RabbitMQ实现延时消息自动取消的简单案例

一、流程图 二、导包 <!--消息队列 AMQP依赖&#xff0c;包含RabbitMQ--> <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-amqp</artifactId> </dependency> 三、配置文件 #消息队列 …