aspose file tools
The moose likes Beginning Java and the fly likes Number of string objects being created Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Number of string objects being created" Watch "Number of string objects being created" New topic
Author

Number of string objects being created

Arjun Reddy
Ranch Hand

Joined: Nov 10, 2007
Posts: 622
Hi all,

In the following two cases, how many string objects are being created?



Thanks.
[ September 23, 2008: Message edited by: Arjun Reddy ]

Be Humble... Be Nice.
Vijitha Kumara
Bartender

Joined: Mar 24, 2008
Posts: 3670

1) 1 object
2) 2 objects (one in the String constant pool if there is no matching one for "hey" and one in the heap)


SCJP 5 | SCWCD 5
[How to ask questions] [Twitter]
Arjun Reddy
Ranch Hand

Joined: Nov 10, 2007
Posts: 622
Thanks Vijitha.
 
I agree. Here's the link: jrebel
 
subject: Number of string objects being created
 
Similar Threads
a question about string
Garbage collection & string literal pool
how many objects are created
doubt about strings creation
JUnit tests for Getters and Setters