Results 1 to 4 of 4

Thread: Java Question

  1. #1
    Hello,

    What is the purpose of class "Object" which is base class for all classes?Please reply my post if anybody knows the answer.

    Thanks
    Last edited by Gracey; 08-23-2011 at 12:28 PM.

  2. Internet, Programming and Graphics   -   #2
    It carries useful methods like toString, that way every object in Java (literally a derivative of the Object class), has a toString method on it.

  3. Internet, Programming and Graphics   -   #3
    An Abstract Base Class in object oriented programming is a class that is meant to be extended by sub-classes but is never meant to be instantiated directly. The base class is designed to provide a common interface and set of core functionality to all of its sub-classes. Now, while an abstract base class is not meant to be instantiated directly, often times, it's constructor functionality is part of the core functionality that we want to make available to its sub-classes.
    Last edited by WebbyAlisha; 10-27-2009 at 06:40 AM.

  4. Internet, Programming and Graphics   -   #4
    Quote Originally Posted by WebbyAlisha View Post
    An Abstract Base Class in object oriented programming is a class that is meant to be extended by sub-classes but is never meant to be instantiated directly. The base class is designed to provide a common interface and set of core functionality to all of its sub-classes. Now, while an abstract base class is not meant to be instantiated directly, often times, it's constructor functionality is part of the core functionality that we want to make available to its sub-classes.
    here
    ___________
    here is our post
    Website Design
    Web Designing
    IT Global Management Melbourne
    IT Management Melbourne
    here is my post

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •