raval.jignesh raval

Greenhorn
+ Follow
since May 31, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by raval.jignesh raval

Hi Rajesh
Can you please tell me where in Mumbai did u find the book ?

Jignesh
Hi All
Abt the example reg: Strings for GC I think 0 objects will be GCed since string objects created as follows
String s = "ABC";
s=null;
are never GCed and the string goes in to String pool
but
String s = new String("ABC");
s-null;
now we have one object eligible to be GCed
Please correct me if I am wrong.
Jignesh