[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!

相关文章
|
4月前
|
Java 索引
java基础(13)String类
本文介绍了Java中String类的多种操作方法,包括字符串拼接、获取长度、去除空格、替换、截取、分割、比较和查找字符等。
50 0
java基础(13)String类
|
28天前
|
存储 JavaScript Java
Java 中的 String Pool 简介
本文介绍了 Java 中 String 对象及其存储机制 String Pool 的基本概念,包括字符串引用、构造方法中的内存分配、字符串文字与对象的区别、手工引用、垃圾清理、性能优化,以及 Java 9 中的压缩字符串特性。文章详细解析了 String 对象的初始化、内存使用及优化方法,帮助开发者更好地理解和使用 Java 中的字符串。
Java 中的 String Pool 简介
|
1月前
|
缓存 安全 Java
java 为什么 String 在 java 中是不可变的?
本文探讨了Java中String为何设计为不可变类型,从字符串池的高效利用、哈希码缓存、支持其他对象的安全使用、增强安全性以及线程安全等方面阐述了不可变性的优势。文中还通过具体代码示例解释了这些优点的实际应用。
java 为什么 String 在 java 中是不可变的?
|
3月前
|
Java 测试技术 开发者
Java零基础-indexOf(String str)详解!
【10月更文挑战第14天】Java零基础教学篇,手把手实践教学!
130 65
|
2月前
|
JSON Java 关系型数据库
Java更新数据库报错:Data truncation: Cannot create a JSON value from a string with CHARACTER SET 'binary'.
在Java中,使用mybatis-plus更新实体类对象到mysql,其中一个字段对应数据库中json数据类型,更新时报错:Data truncation: Cannot create a JSON value from a string with CHARACTER SET 'binary'.
143 4
Java更新数据库报错:Data truncation: Cannot create a JSON value from a string with CHARACTER SET 'binary'.
|
5月前
|
Kubernetes jenkins 持续交付
从代码到k8s部署应有尽有系列-java源码之String详解
本文详细介绍了一个基于 `gitlab + jenkins + harbor + k8s` 的自动化部署环境搭建流程。其中,`gitlab` 用于代码托管和 CI,`jenkins` 负责 CD 发布,`harbor` 作为镜像仓库,而 `k8s` 则用于运行服务。文章具体介绍了每项工具的部署步骤,并提供了详细的配置信息和示例代码。此外,还特别指出中间件(如 MySQL、Redis 等)应部署在 K8s 之外,以确保服务稳定性和独立性。通过本文,读者可以学习如何在本地环境中搭建一套完整的自动化部署系统。
79 0
|
28天前
|
存储 Java
Java 11 的String是如何优化存储的?
本文介绍了Java中字符串存储优化的原理和实现。通过判断字符串是否全为拉丁字符,使用`byte`代替`char`存储,以节省空间。具体实现涉及`compress`和`toBytes`方法,前者用于尝试压缩字符串,后者则按常规方式存储。代码示例展示了如何根据配置决定使用哪种存储方式。
|
2月前
|
Java
在Java中如何将基本数据类型转换为String
在Java中,可使用多种方法将基本数据类型(如int、char等)转换为String:1. 使用String.valueOf()方法;2. 利用+运算符与空字符串连接;3. 对于数字类型,也可使用Integer.toString()等特定类型的方法。这些方法简单高效,适用于不同场景。
70 7
|
3月前
|
Java 测试技术 开发者
Java零基础-indexOf(String str)详解!
【10月更文挑战第13天】Java零基础教学篇,手把手实践教学!
70 1
|
3月前
|
安全 Java 测试技术
Java零基础-StringBuffer 类详解
【10月更文挑战第9天】Java零基础教学篇,手把手实践教学!
68 2