Results 1 to 3 of 3

Thread: What is class loader

  1. #1

    What is class loader

    Plz Answer it


  2. #2
    Junior Member
    Join Date
    Jul 2007
    Answers
    1

    Re: What is class loader

    It will load the required class into memory (VM).

    The 'loadClass' method in 'ClassLoader' performs these tasks, in order, when called to load a class:

    1. If a class has already been loaded, it returns it.
    2. Otherwise, it delegates the search for the new class to the parent class loader.
    3. If the parent class loader does not find the class, loadClass calls the method findClass to find and load the class.

    for more please refer : http://java.sun.com/docs/books/tutor...sics/load.html


  3. #3
    Contributing Member
    Join Date
    Sep 2006
    Answers
    962

    Re: What is class loader

    A class loader is an object that is responsible for loading classes. The class ClassLoader is an abstract class. Given the name of a class, a class loader should attempt to locate or generate data that constitutes a definition for the class. A typical strategy is to transform the name into a file name and then read a "class file" of that name from a file system.

    Read More Information

    Please try to use google...You can get more...

    ------------------------
    suresh


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
About us
Applying for a job can be a stressful and frustrating experience, especially for someone who has never done it before. Considering that you are competing for the position with a at least a dozen other applicants, it is imperative that you thoroughly prepare for the job interview, in order to stand a good chance of getting hired. That's where GeekInterview can help.
Interact