[Java Plasterer] Java Components 4:Java String,How to use them?

简介:

Reprint it anywhere u want.

Although the world is full of suffering , it is full also of the overcoming of it.  -Hellen Keller

 

Written In The Font

52. Suggestion:Use the String direct value for the assignment [推荐使用String直接量赋值]

54.  How to use the String , StringBuffer,StringBuilder [正确的使用String , StringBuffer,StringBuilder ]

55. Easy Time:Pay attention to the address of String [注意字符串的位子]

57. Complex string manipulation using regular expressions [复杂字符串操作使用正则表达式]

 

Suggestion:Use the String direct value for the assignment

Do u knw the String Object ? If u do some projects,u can see the String is used usually. A object is created by the key word : new.Therefore , we can create a String Obejct by :“ String str3 = new String(“Jeff”); ”.

Here, in my word,using the String direct value for the assignment is a better way.

for example:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
public class String01
{
     public static void main(String[] args)
     {
         String str1 = "Jeff";
         String str2 = "Jeff";
         String str3 = new String("Jeff");
         String str4 = str3.intern();
         
         boolean b1 = (str1 == str2);
         boolean b2 = (str1 == str3);
         boolean b3 = (str1 == str4);
         
         System.out.println("b1:"+b1+"  "+"b2:"+b2+"  "+"b3:"+b3+"  ");
     }
}
#outputs:
b1:true  b2:false  b3:true

b1:true b2:false
  u will think ,thats why they r different.
  As we all kno , the  operator“==”show whether two objects’address references are the same. Java designed a String Pool for storing all the String used to avoid there are to many String Objects created in a system. So  String str3 = new String(“Jeff”);  is creating a object in java heap memory not the String Pool.

intern() is a method of String. we can see from the jdk help doc.

?
1
2
3
4
5
public String intern()
Returns a canonical representation for the string object.
A pool of strings, initially empty, is maintained privately by the class String.
 
When the intern method is invoked, if the pool already contains a string equal to this String object as determined by the equals(Object) method, then the string from the pool is returned. Otherwise, this String object is added to the pool and a reference to this String object is returned.

  It follows that for any two strings s and t, s.intern() == t.intern() is true if and only if s.equals(t) is true.

  All in all, using  String str = “Jeff”;  u dont mind the Thread-security or Garbage collection mechanism.String is a nice man , treat it as a little boy pelasse.

image

 

How to use the String , StringBuffer,StringBuilder

Look at the pic:
image

String , StringBuffer ,StringBuilder implement the CharSequence.But they are different.

String
  String Object is a non-variable . it can not be changed and in the memory when u create it.

for example:

?
1
2
3
4
5
6
String str  = "abc";
     String str1 = str.substring(1);
         
     System.out.println("str1" + str1);
#outputs:
bc

  substring() method creates a new String Object and links the reference of it to str1. But when “str.substring(0)”,str1 and str  both link to the “abc”by the JVM.

StringBuffer StringBuilder

  they are very similar and they r variables of the sequence of characters.Only different, the StringBuffer has the methods which are synchronized where necessary. String buffers are safe for use by multiple threads. Different from String, if z refers to a string buffer object whose current contents are “start“, then the method call z.append("le") would cause the string buffer to contain “startle“, whereasz.insert(4, "le") would alter the string buffer to contain “starlet“.

All in all:

String can be used for the constants.

image

StringBuffer can be used for some operating methods in multithreaded environment.like XML analyze,the parameters of HTTP analyze etc.

StringBuilder can be used for HQL/SQL splice, JSON package etc.

image

 

Easy Time:Pay attention to the address of String

for example:

?
1
2
3
4
5
6
7
8
9
10
11
public static void main(String[] args)
{
     String str1 = 1 + 2 + "apples";
     String str2 = "apples" + 1 + 2;
     
     System.out.println(str1);
     System.out.println(str2);
}
#outputs:
3apples
apples12

what we can see from the result-values.why ? how ? they did.

Because the JAVA handling mechanism to the operator “+”. when there is a string in the expression, all the expression data will change itself to the String class.if the data is an Object, it will call its toString method.

So,String str1 = 1 + 2 + “apples” just like String str1 = (1 + 2) + “apples” .thats all.

 

Complex string manipulation using regular expressions

just reading!! the part , i will write in the future.

image

 

Write to Reader

Thank u!

相关文章
|
1月前
|
编解码 Java 开发者
Java String类的关键方法总结
以上总结了Java `String` 类最常见和重要功能性方法。每种操作都对应着日常编程任务,并且理解每种操作如何影响及处理 `Strings` 对于任何使用 Java 的开发者来说都至关重要。
265 5
|
3月前
|
存储 SQL 缓存
Java字符串处理:String、StringBuilder与StringBuffer
本文深入解析Java中String、StringBuilder和StringBuffer的核心区别与使用场景。涵盖字符串不可变性、常量池、intern方法、可变字符串构建器的扩容机制及线程安全实现。通过性能测试对比三者差异,并提供最佳实践与高频面试问题解析,助你掌握Java字符串处理精髓。
|
4月前
|
自然语言处理 Java Apache
在Java中将String字符串转换为算术表达式并计算
具体的实现逻辑需要填写在 `Tokenizer`和 `ExpressionParser`类中,这里只提供了大概的框架。在实际实现时 `Tokenizer`应该提供分词逻辑,把输入的字符串转换成Token序列。而 `ExpressionParser`应当通过递归下降的方式依次解析
338 14
|
Java 索引
java基础(13)String类
本文介绍了Java中String类的多种操作方法,包括字符串拼接、获取长度、去除空格、替换、截取、分割、比较和查找字符等。
171 0
java基础(13)String类
|
8月前
|
缓存 安全 Java
《从头开始学java,一天一个知识点》之:字符串处理:String类的核心API
🌱 **《字符串处理:String类的核心API》一分钟速通!** 本文快速介绍Java中String类的3个高频API:`substring`、`indexOf`和`split`,并通过代码示例展示其用法。重点提示:`substring`的结束索引不包含该位置,`split`支持正则表达式。进一步探讨了String不可变性的高效设计原理及企业级编码规范,如避免使用`new String()`、拼接时使用`StringBuilder`等。最后通过互动解密游戏帮助读者巩固知识。 (上一篇:《多维数组与常见操作》 | 下一篇预告:《输入与输出:Scanner与System类》)
235 11
|
8月前
|
Java
课时14:Java数据类型划分(初见String类)
课时14介绍Java数据类型,重点初见String类。通过三个范例讲解:观察String型变量、"+"操作符的使用问题及转义字符的应用。String不是基本数据类型而是引用类型,但使用方式类似基本类型。课程涵盖字符串连接、数学运算与字符串混合使用时的注意事项以及常用转义字符的用法。
256 9
|
9月前
|
网络协议 Java Shell
java spring 项目若依框架启动失败,启动不了服务提示端口8080占用escription: Web server failed to start. Port 8080 was already in use. Action: Identify and stop the process that’s listening on port 8080 or configure this application to listen on another port-优雅草卓伊凡解决方案
java spring 项目若依框架启动失败,启动不了服务提示端口8080占用escription: Web server failed to start. Port 8080 was already in use. Action: Identify and stop the process that’s listening on port 8080 or configure this application to listen on another port-优雅草卓伊凡解决方案
621 7
|
Java 测试技术 开发者
Java零基础-indexOf(String str)详解!
【10月更文挑战第14天】Java零基础教学篇,手把手实践教学!
315 65
|
11月前
|
存储 JavaScript Java
Java 中的 String Pool 简介
本文介绍了 Java 中 String 对象及其存储机制 String Pool 的基本概念,包括字符串引用、构造方法中的内存分配、字符串文字与对象的区别、手工引用、垃圾清理、性能优化,以及 Java 9 中的压缩字符串特性。文章详细解析了 String 对象的初始化、内存使用及优化方法,帮助开发者更好地理解和使用 Java 中的字符串。
178 2
Java 中的 String Pool 简介