reference:http://examples.javacodegeeks.com/core-java/lang/string/java-string-class-example/
1. Introduction
In this example we are going to discuss about the basic characteristics of Java String Class. String is probably one of the most used types in Java programs. That’s why Java provides a number of API methods that make String manipulation easy and efficient, straight out of the box. Strings are so important that even in the latest Java releases (including 7 and 8), several changes have been made to its class methods and its internal representation, improving it even further in terms of performance and security.
2. String Class basic methods
A String is simply a sequence of characters. As a matter of fact, a String Object is backed by a char array. Consequently, it is not null terminated, like in C/C++.
Here is how you can create a String
1 |
String str= "Hello World"; |
"Hello World" is called a String literal. In a Java program, everything between two double quotes is a String literal. Literals are implemented as instances of String class. As you can see, you can conveniently initialize a String Object like a primitive type, e.g int i = 0;.
There is no need to do:
1 |
String str = new String("Hello World"); |
There is a difference between these two initialization methods, although the result is the same : A String with value “Hello World”. But more on that in just a bit.
For now, here is a simple main with the most important String API methods:
StringClassExample.java
001 |
package com.javacodegeeks.core.lang.string; |
003 |
public class StringClassExample { |
005 |
public static void main(String[]args){ |
006 |
//Initialization with literal |
007 |
String str1 = "Hello World"; |
008 |
System.out.println("str1:"+str1); |
010 |
//Initialization with char array |
011 |
char arr[] = {'H','e','l','l','o'}; |
012 |
String str2 = new String(arr); |
013 |
System.out.println("str2:"+str2); |
015 |
//Concatenation using + operator |
016 |
String str3 = "World"; |
017 |
str3 = str2 + " " + str3; |
018 |
System.out.println("str3:"+str3); |
020 |
//find out the length of a string |
021 |
System.out.println(str3.length()); |
023 |
//You can even apply that to literals, as with all String API methods |
024 |
//As we said. literals are implemented as String instances |
025 |
System.out.println("Length: "+"abcdefg".length()); |
027 |
//Substring from position 2 to position 10 |
028 |
String c = str1.substring(2,10); |
029 |
System.out.println("Substring :"+c); |
031 |
//Substring from position 1 to position 4 |
032 |
System.out.println("Literal Substring :"+"abcdefghigklm".substring(1,4)); |
034 |
// Get the charcter array of the string. |
035 |
char[] chars = c.toCharArray(); |
036 |
System.out.println("Char array : ["+chars[0]+","+chars[1]+","+chars[2]+"]"); |
038 |
//find the first index of a char inside a string |
039 |
int i = str1.indexOf('W'); |
040 |
System.out.println("Index of 'W':"+i); |
042 |
//find the first index of a string inside another string after a certain position |
043 |
i = str1.indexOf("orld",5); |
044 |
System.out.println("Index of 'orld':"+i); |
046 |
//find the last index of a string inside another string |
047 |
i = str1.lastIndexOf("l"); |
048 |
System.out.println("LAST Index of 'l':"+i); |
050 |
//find the last index of a string inside another string after a certain position |
051 |
// - like scanning the string backwards |
052 |
i = str1.lastIndexOf("l",7); |
053 |
System.out.println("LAST Index of 'l':"+i); |
055 |
//find a character in a certain position |
056 |
char cr = str1.charAt(5); |
057 |
System.out.println("Character at position 5:"+cr); |
060 |
System.out.println("ABCEFAFA".toLowerCase()); |
063 |
System.out.println("abcasipasc".toUpperCase()); |
065 |
//replace occurrences of a character |
066 |
str1 = str1.replace('o','0'); |
067 |
System.out.println(str1); |
069 |
//Trim white spaces from the end and the beginning |
070 |
String str4 = " Java"; |
071 |
System.out.println(str4); |
072 |
System.out.println(str4.trim()); |
075 |
String str5= "Java is great"; |
076 |
String[] strArray = str5.split(" "); |
078 |
System.out.println(strArray[0]+","+strArray[1]+","+strArray[2]); |
080 |
str5= "Java-is-great"; |
081 |
strArray = str5.split("-"); |
082 |
System.out.println(strArray[0]+","+strArray[1]+","+strArray[2]); |
084 |
str5= "Java is great"; |
085 |
strArray = str5.split("/*"); |
086 |
System.out.println(strArray[0]+","+strArray[1]+","+strArray[2]+","+strArray[3]+","+strArray[4]+ |
087 |
","+strArray[5]+","+strArray[6]+","+strArray[7]+","+strArray[8]); |
089 |
//contains and equals |
090 |
System.out.println("Contains :" + "qwerty".contains("ert")); |
091 |
System.out.println ("Equals :"+str5.equals("java is great")); |
092 |
System.out.println ("Equals ignore case:"+str5.equalsIgnoreCase("java is great")); |
094 |
// Compare lexicographically two strings |
095 |
System.out.println ("Compare:"+str5.compareTo("abc")); |
097 |
//comparison attempts |
099 |
String s3 = new String("abc"); |
101 |
System.out.println(s1==s3); |
102 |
System.out.println(s1.equalsIgnoreCase(s3)); |
This is the output of the above program:
str1:Hello World
str2:Hello
str3:Hello World
11
Length: 7
Substring :llo Worl
Literal Substring :bcd
Char array : [l,l,o]
Index of 'W':6
Index of 'orld':7
LAST Index of 'l':9
LAST Index of 'l':3
Character at position 5:
abcefafa
ABCASIPASC
Hell0 W0rld
Java
Java
Java,is,great
Java,is,great
,J,a,v,a, ,i,s,
Contains :true
Equals :false
Equals ignore case:true
Compare:-23
false
true
From the above program is clear that Java designers decided to treat Strings somewhat differently from other Objects. For example you can initialize them like a primitive, e.g String a="abc" and you can concatenate two strings using + operator, like you would add twoints (looks like overloading + operator in C++).
The comparison attempts section of the code might seem a little fuzzy, but it will get clear in the next section. What you should take away from it now, is that you SHOULD NEVER try to compare the contents of Strings using == operator. You are only comparing reference equality, not content equality. You MUST use equals or equalsIgnoreCase.
3. Other characteristics of String objects
String objects are immutable. This means that once a String is created, its contents cannot be changed. In the above example, every time we attempt to change its contents, e.g when concatenating, a new String object is created representing the result. Additionally, String class is final, so you cannot override its behavior.
Immutability was mostly chosen for security reasons and for performance. It also means that two different thread can share the same String and manipulate it as they want, not having to synchronize anything, because every time they make a change in the original string, a new one is created, while the old one remains untouched.
Now let’s see this :
4 |
String s3 = new String("abc"); |
6 |
System.out.println(s1==s2); |
7 |
System.out.println(s1==s3); |
This outputs:
true
false
Literals are stored in a special place in memory, called a String pool, of course in the form of String Objects. In that pool, a Stringobject with value “abc” is only created and stored once. Any other String that gets the value “abc” (statically – hard coded) will reference the same String object. So, every time you create a String using a literal, the system will search that pool and checks if the value of the literal exists in an object of the pool. If it does, it sends back the reference to that matching object, if not it creates a new Object and stores it in the pool. So, String references, initialized with the same literals, will point to the same String object. This technique was used to save precious memory, as it shares as much common data as possible.
Now, you can also see another reason why Strings are immutable. Imagine thread A creating a local string “abc” and then a second thread B creating his own local string “abc”. These two threads will share the same String object… If String was mutable, then if A changed the string, the change would affect thread B, but in a meaningless (put catastrophic) way.
When creating a String using new, you explicitly create a brand new object in the heap. This is also the case for non hard codedString initialization, for example, if you are reading input Strings from a source. These String Objects will not be stored in the pool. Imagine that you create an application that has to hold addresses for users living in Greece. There are four million people living in Athens, so consider the massive waste of space should you store four million String objects with value “Athens”. In order to pool those non hard coded Strings, there is an API method called intern, and can be used like so:
04 |
String s3 = new String("abc"); |
06 |
System.out.println(s1==s2); |
07 |
System.out.println(s1==s3); |
10 |
System.out.println(s1==s3); |
This will now output:
true
false
true
When calling intern, the system follows the same procedure as if we did s3 = "abc", but without using literals.
But be careful. Before Java 7, this pool was located in a special place in the Java Heap, called PermGen. PermGen is of fixed size, and can only hold a limited amount of string literals. So, interning should be used with ease. From Java 7 onward, the pool will be stored in the normal heap, like any other object (making them eligible for garbage collection), in a form of a hashmap and you can adjust its size using -XX:StringTableSize option. You could create your own String pool for that matter, but don’t bother.
This is only one of the aspects that Java creators changed in the String class. Even more radical changes ware made, including the internal String representation (it now has two less static fields).
Download the Eclipse Project
This was an example of Java String Class. You can download the Eclipse Project of this example here : StringClassExample.zip
- 自己挖坑自己跳 之JsonMappingException: (was java.lang.NullPointerException) (through reference chain:)
在Web项目中,我们经常会设计一些与界面相对应的JavaBean作为Entity,而为了兼容前台传入的空值,有些字段我们会用包装类型而不是基本类型.可是往往我的Entity已经设计完成,很多时候我们会 ...
- 通过反编译深入理解Java String及intern(转)
通过反编译深入理解Java String及intern 原文传送门:http://www.cnblogs.com/paddix/p/5326863.html 一.字符串问题 字符串在我们平时的编码工作 ...
- 通过反编译看Java String及intern内幕--费元星站长
通过反编译看Java String及intern内幕 一.字符串问题 字符串在我们平时的编码工作中其实用的非常多,并且用起来也比较简单,所以很少有人对其做特别深入的研究.倒是面试或者笔试的时候,往 ...
- Java String 字符串类细节探秘
一. 字符串基本知识要点 字符串类型String是Java中最常用的引用类型.我们在使用Java字符串的时候,通常会采用两种初始化的方式:1. String str = "Hello Wor ...
- Java String.replaceAll() 与后向引用(backreference)
问题 昨天看到一篇博文,文中谈到一道 Java 面试题: 给定一字符串,若该字符串中间包含 "*",则删除该 "*":若该字符串首字符或尾字符为 "* ...
- 从Java String实例来理解ANSI、Unicode、BMP、UTF等编码概念
转(http://www.codeceo.com/article/java-string-ansi-unicode-bmp-utf.html#0-tsina-1-10971-397232819ff9a ...
- Java String.split()小点
java String.split(); 别的不说,单说其中一个问题,这个函数去切分空字符串时,得到的结果: public static void main(String[] args) {// St ...
- Java总结篇系列:Java String
String作为Java中最常用的引用类型,相对来说基本上都比较熟悉,无论在平时的编码过程中还是在笔试面试中,String都很受到青睐,然而,在使用String过程中,又有较多需要注意的细节之处. 1 ...
- java String.split()函数的用法分析
java String.split()函数的用法分析 栏目:Java基础 作者:admin 日期:2015-04-06 评论:0 点击: 3,195 次 在java.lang包中有String.spl ...
随机推荐
- Eclipse或Myeclipse常用快捷键组合详解
Eclipse 是一个开放源代码的.基于Java的可扩展开发平台,就其本身而言,它只是一个框架和一组服务,用于通过插件组件构建开发环境.. Eclipse(Myeclipse)中有很多便于开发的快捷键 ...
- 【数据结构与算法分析——C语言描述】第一章总结 引论
这一章主要复习了一些数学知识,像指数.对数.模运算.级数公式:还有2种证明方法,归纳假设法和反证法.所幸以前学过,重新拾捡起来也比较轻松. 简要地复习了递归,提出了编写递归例程的四条基本法则: 基准情 ...
- 为什么在Spring的配置里,最好不要配置xsd文件的版本号
为什么dubbo启动没有问题? 原文链接:http://www.tuicool.com/articles/YRn67zM 这篇blog源于一个疑问: 我们公司使了阿里的dubbo,但是阿里的开源网站h ...
- 负载均衡--大型在线系统实现的关键(上篇)(再谈QQ游戏百万人在线的技术实现)
http://blog.csdn.net/sodme/article/details/393165 —————————————————————————————————————————————— 本文作 ...
- JS制作的简单的三级及联
前台: <form id="form1" runat="server"> <div> 省 <select id="Pro ...
- HDU 3920Clear All of Them I(状压DP)
HDU 3920 Clear All of Them I 题目是说有2n个敌人,现在可以发n枚炮弹,每枚炮弹可以(可以且仅可以)打两个敌人,每一枚炮弹的花费等于它所行进的距离,现在要消灭所有的敌人 ...
- jgroups 入门
官网地址:http://www.jgroups.org/ 聊天室示例:http://www.jgroups.org/tutorial/html/ch02.html 2.1. JGroups overv ...
- sql2008来远程访问sql2005数据库服务器
今天搞了一个下午终于搞定了数据库的远程访问.其基本步骤如下: sql2008的配置: sql server 2008默认是不允许远程连接的,sa帐户默认禁用的,如果想要在本地用SSMS连接远程服务器上 ...
- Xcode——创建你自己的Framework
(注:以下内容是基于Xcode7.2.1操作的,版本不一,可能界面内容不同!) 如果你想将你开发的控件与别人分享,一种方法是直接提供源代码文件.然而,这种方法并不是很优雅.它会暴露所有的实现细节,而这 ...
- SQL语句 & 查询表结构
[group by] 对结果集进行分组,常与汇总函数一起使用. SELECT column,SUM(column) FROM table GROUP BY column HAVING 通常与 GROU ...