| | |
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 |
actuate add android api applet application applications array arrays automation balls bank binary bluetooth chat class clear client code codesnippet collections component database development dice digit dragging ebook eclipse equation error event formatingtextintooltipjava fractal functiontesting game givemetehcodez graphics gui health hql html hyper ide idea image infinite int integer invokingapacheantprogrammatically j2me java javame javaprojects jni jpanel julia linux list main map method methods mobile myregfun mysql netbeans newbie nonstatic openjavafx parameter pearl php problem program programming project recursion repositories scanner scrollbar server set sms sort sorting spamblocker sql sqlserver state storm string sun superclass swing swt thread threads tree windows






