answersLogoWhite

0

What is object class in java?

Updated: 8/17/2019
User Avatar

Wiki User

13y ago

Best Answer

object class is a super class for all other class...

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is object class in java?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the Object class parent?

Object is the topmost class in the Java Class hierarchy. There is no Class above Object. All classes in Java are implicitly derived from Object.


Is there class name as object in java?

Yes, the base class for all other Java classes is Object.


What is topleval class in java?

The top level class in Java is "Object." All other classes are subclasses of Object by default.


The top most class in java?

All classes in java must inherit from the Object class


What is static java most commonly used for?

Static java method is the same as a static variable. They belong to a class and not an object of that class. If a method needs to be in a class, but not tied to an object, then one uses static java.


Why you start java program by class?

without class non of the folder can run so the java program should start in class we can use the class without object in java


What is parent class in java?

Object Class is the parent class of all classes in java.Every class in the Java system is a descendant (direct or indirect) of the Object class.


When object is created and destroyed in java?

in java object is created as soon a class comes into picture......and distroyed ehwn exit that class............. (object) it is running instance ......... submitted by- shreyas joshi..


Can you initialize an object without constructor in java?

No. if you wish to create an object that you plan on using in a java program then the answer is NO. You cannot initialize an object of a Java class without calling the constructor.


Why Object is Super Most Class In Java?

It's part of the language specification that all objects in Java must inherit from Object. Java defines a strict class hierarchy, and enforcing a "super most class" ensures that this ordering is maintained.


How oops concept is implemented in java?

OOP stands for Object Oriented Programming. Everything in Java is an Object. Any class you create extends the Object class by default thereby making everything in Java an object. Moreover, you can use features like Inheritance, Polymorphism, Encapsulation etc which are OOP concepts thereby making Java an Object Oriented Programming Language


What is abstraction method in java?

Abstraction in Java or Object oriented programming is a way to segregate implementation from interface and one of the five fundamentals along with Encapsulation, Inheritance, Polymorphism, Class and Object. Abstraction in Java is achieved by using interface and abstract class in Java.