answersLogoWhite

0

What is concrete class in java?

Updated: 8/11/2023
User Avatar

Wiki User

12y ago

Best Answer

A method which is not abstract i.e. if a methods definition is given in the same class its declared is called concrete. where as abstract method would have no definition till the deep down of the hierarchy of class structure but ll ve a declaration in all the subclasses and definition in one subclass after which it need not be declared in the further subclasses. By the way defining the abstract method in a subclass would end the carrying of the declaration till down, but defining it is not mandatory where declaring is mandatory.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

12y ago

derived class [subclass] implements all missing methods

This answer is:
User Avatar

Add your answer:

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

What kind of inheritance is not allowed in java?

Java does not allow the multiple inheritance of concrete classes, though it does allow a "hybrid" inheritance of one concrete class and multiple interfaces.


Extension file for Java?

Java source files have the .java extension, compiled Java class files have the .class extension.


Why is multiple inheritance not provided in Java?

One of the main reasons for creating Java was to address the problems of C++. One such problem was multiple inheritance, which was prone to ambiguity when a class inherited from two separate classes which shared a function with an identical definition. The designers of Java decided to eliminate this problem altogether by only allowing a class to inherit from a single other concrete class.


The actions in a java class are called?

The actions in a java class are called methods.


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


When java uses compiler?

What i know is java we will use compiler when it want to get class file(file with .class extension) from java file(file with .java extension).


How do you call main class with in main class in java?

We can't call a class. We always call a method in java.


How we can convert concrete class to ratio?

what is the concrete ratio in Class D2 concrete


What class begins java class hierarchy?

Class


The top most class in java?

All classes in java must inherit from the Object class


What is the way to get rid of Java lang no class deffound error?

To get rid of the Java lang no class deffound error, one must add the class or .jar file which contains this class into the Java classpath. When a Java class is run from the command line, one must add a dot (.)


Is there class name as object in java?

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