The String class is immutable, so that once it is created a String object cannot be changed. Since String is immutable it can safely be shared between many threads ,which is considered very important for multithreaded programming.
Sunday, 23 March 2014
Subscribe to:
Post Comments (Atom)
this blog is helpful or not
International
Auto News
Translate
Pages
Popular Posts
-
Unicode is a universal international standard character encoding that is capable of representing most of the world's written langu...
-
If subclass (child class) has the same method as declared in the parent class, it is known as method overriding . In other words, I...
-
What it does? The JVM performs following operation: Loads code Verifies code Executes code Provides runtime environment JVM prov...
-
Do You Know ? What is the difference between checked and unchecked exceptions ? What happens behind the code int data=50/0; ? Why ...
-
In previous tutorial Java Virtual Machine, An inside story… , we saw some basic of internals of JVM and how it is divided into differe...
-
The instanceof operator is used to test whether the object is an instance of the specified type (class or subclass or interface). ...
-
Java - Inheritance Inheritance can be defined as the process where one object acquires the properties of another. With the use of i...
-
String Handling How to create string objects? String literal new keyword Why Java uses the concept of String literal? String ...
-
Here is consolidated list of Java Design Patterns. I will add detailed explaination with examples shortly. 1. Creational Patterns i) ...
-
The final keyword in java is used to restrict the user. The final keyword can be used in many context. Final can be: variable met...
Popular Posts
-
Unicode is a universal international standard character encoding that is capable of representing most of the world's written langu...
-
If subclass (child class) has the same method as declared in the parent class, it is known as method overriding . In other words, I...
-
What it does? The JVM performs following operation: Loads code Verifies code Executes code Provides runtime environment JVM prov...
-
Do You Know ? What is the difference between checked and unchecked exceptions ? What happens behind the code int data=50/0; ? Why ...
-
In previous tutorial Java Virtual Machine, An inside story… , we saw some basic of internals of JVM and how it is divided into differe...
-
The instanceof operator is used to test whether the object is an instance of the specified type (class or subclass or interface). ...
-
Java - Inheritance Inheritance can be defined as the process where one object acquires the properties of another. With the use of i...
-
String Handling How to create string objects? String literal new keyword Why Java uses the concept of String literal? String ...
-
Here is consolidated list of Java Design Patterns. I will add detailed explaination with examples shortly. 1. Creational Patterns i) ...
-
The final keyword in java is used to restrict the user. The final keyword can be used in many context. Final can be: variable met...
0 comments:
Post a Comment