What is a concrete classes? is java object class is concrete class?

Showing Answers 1 - 26 of 26 Answers

madhav

  • Mar 6th, 2006
 

hi yes Object class is concrete class.And is root of the class Hierachy.

thanks regards

madhav

anburajv

  • Mar 13th, 2006
 

concrete class is the one with all implemented methods or simply not an abstract class. Object has all its methods implemented hence it is a concrete class.

  Was this answer useful?  Yes

K.saravanan

  • Jun 10th, 2006
 

General method is called as concrete class(independent).

  Was this answer useful?  Yes

sudharshan

  • Dec 29th, 2006
 

concrete classes which have deffination part & implimentation part

  Was this answer useful?  Yes

soman

  • Jul 20th, 2011
 

concrete class is made up of 50% cement n 45% gravels mixed with !/2 glass of water....

raju

  • Mar 22nd, 2012
 

Concrete class is a class with implementation for all the methods in it. Concrete class defines all the abstract methods of an abstract class which it is extending. Object class is a concrete class.

  Was this answer useful?  Yes

Pammu

  • Mar 29th, 2016
 

A concrete class one of which content fully defined methods.
Defined method of a class are know as concrete method are implemented. Once class is concrete we can instantiate the object directly.

  Was this answer useful?  Yes

Monika Srivastava

  • May 4th, 2016
 

A concrete class in java is a class which has implementation of all of its inherited members either from interface or abstract class.

Code
  1. public abstract class A {

  2.      public abstract void test();

  3. }

  4.  

  5. interface B {

  6.      public void test2();

  7. }

  8.  

  9. public class C extends A implements B {

  10.        public void test() {

  11.             System.out.print("Abstract implementation");

  12.         }

  13.  

  14.       public void test2() {

  15.            System.out.print("Interface implementation");

  16.        }

  17. }

  Was this answer useful?  Yes

Pravallika vangavolu

  • Apr 4th, 2017
 

Concrete classes are the classes which have complete definition and implementation of methods that are not implemented in abstract classes

  Was this answer useful?  Yes

Neha

  • Sep 7th, 2017
 

Concrete class is a superclass. Yes Object class can be termed as concrete class as it is the top level class in java.
All classes in java extends superclass.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions