Latest News

 










PPT Slide

Previous slide Next slide Back to first slide View graphic version


PPT Slide


 
My other sites

Latest News

 










PPT Slide

    java.lang.Class

  • Instances represent Classes and Interfaces in a running application
  • Created automatically by the VM or by a call to the class loader
  • No public constructor
  • forName returns the Class object associated with the class with the
    given string name

    public final class Class extends Object implements Serializable
    {
    public static Class forName(String)
    public Object newInstance()
    public boolean isInstance(Object)
    // Other methods
    }

Previous slide Next slide Back to first slide View graphic version