• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

class unloding by JVM?

 
Ranch Hand
Posts: 188
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
what is the meaning?

is it the full program excution is over?


<SECOND DOUBT>
String s=new String();
is a empty object created here with s referring it?
 
Ranch Hand
Posts: 52
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Classes are unloaded at the discretion of the JVM. But they have to at least meet the below restrictions

Instances-If any instance of the class are still in existence then they will not be unloaded.

java.lang.Class-If a class's java.lang.Class object is still being referenced from another object, then it will not be unloaded.

String s=new String(); this code basically creates an object of the type String and assigns it to the s reference variable. And it returns a null when you try to access it.
 
Ranch Hand
Posts: 35
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The string returned by new String() has a value of empty string ("") and not null.
reply
    Bookmark Topic Watch Topic
  • New Topic