| | |
String
Thread Solved |
hi everyone
i have a very a very basic question in mind .. i wanted to discuss ..
Difference Between these?
String s1= new String("java") ;
String s2="java" ;
and also
what for 2 different classes are there in garbage collection?
System.gc and runtime.gc ( both are doing the same job)
what is their individual role?
please anyone explain me....
i have a very a very basic question in mind .. i wanted to discuss ..
Difference Between these?
String s1= new String("java") ;
String s2="java" ;
and also
what for 2 different classes are there in garbage collection?
System.gc and runtime.gc ( both are doing the same job)
what is their individual role?
please anyone explain me....
Adios,
Vinod......
Vinod......
•
•
•
•
hi everyone
i have a very a very basic question in mind .. i wanted to discuss ..
Difference Between these?
String s1= new String("java") ;
String s2="java" ;
new String("java") constructor, you will actually get a new copy of the String "java", not the reference from the String pool. The following fragment of code will demonstrate this Java Syntax (Toggle Plain Text)
String a = "java"; String b = new String("java"); String c = "java"; System.out.println("a==b : "+(a==b)); // false System.out.println("a.equals(b) : "+(a.equals(b))); // true System.out.println("a==c : "+(a==c)); //true
•
•
•
•
what for 2 different classes are there in garbage collection?
System.gc and runtime.gc ( both are doing the same job)
what is their individual role?
please anyone explain me....
•
•
•
•
The call System.gc() is effectively equivalent to the call:
Runtime.getRuntime().gc()
The method System.gc() is the conventional and convenient means of invoking this method.
![]() |
Similar Threads
Other Threads in the Java Forum
- Previous Thread: MasterMind novice
- Next Thread: Java home work help (long post)
| Thread Tools | Search this Thread |
911 addball addressbook android api append applet application apps array arrays automation binary bluetooth businessintelligence button card character class client code collision component crashcourse css csv database eclipse ee error fractal free game gis givemetehcodez graphics gui html ide image integer integration j2me japplet java javaarraylist javadoc javafx javaprojects jni jpanel julia jvm linux list loan machine map method methods migrate mobile netbeans newbie objects oriented output panel phone physics problem program programming project projects radio recursion replaydirector reporting researchinmotion scanner se server service set sms software sort sql string swing test textfield threads transfer tree trolltech ubuntu utility windows






