what is the difference between String s="hello"; and String
s=new String("hello");?
Answer Posted / amit singh
not the difference both are the string
String s = "hello"
its aliteral string it will be in a pool
imagine that when you cretae the anothre string
String s1 = "hello"
thn ther is not new Styrin object wil cretae its will pick
from the pool where the literal strin g hello will presnet
so s>
----------"hello"
s1>
both pointing the same string
2)String s = new String("hello");
there are two string will create frist the litreal "hello"
then the other through the new String("hello"); which is
point through referenece s is pointed so there is always
create a new String which is pointed by the reference s
its not going to pick through the pool
amitsing2008@gmail.com
amit09mca(scjp 1.5 and manymore)
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What will happen if a thrown exception is not handled?
What does this () mean in java?
what is a working thread? : Java thread
What are multiple inheritances? Is it supported by java?
What do you mean by Function Overloading in java?
How many JVMs can run on a single machine and what is the meaning of Just-In-Time (JIT) compiler?
What is the technique adopted to create an immutable class?
What is final variable?
Is vector synchronized in java?
How do you use compareto in java?
What are the fileinputstream and fileoutputstream?
What are the application of stack?
What is JDBC Driver interface?How can you retrieve data from the ResultSet
Why do we need wrapper class?
What is a Hash Table? What are the advantages of using a hash table?