Whats in concrete class in java ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 13

Whats in concrete class in java ?

What is concrete class and whats the advantage of it how to use it ???

12th Apr 2019, 9:05 PM
K A Samitha Niroshan
K A Samitha Niroshan - avatar
6 Answers
+ 9
As per name suggests, concrete means Solid, it means having no any row part or unimplemented things(methods).So we can conclude that concrete classes are those classes that can be instantiated with new key word. MyClass myClass = new MyClass();
12th Apr 2019, 9:32 PM
Nazar Shved
Nazar Shved - avatar
+ 51
Concrete class is a sub class that implements all the methods of it's abstract super class.
13th Apr 2019, 3:35 AM
Jaseem Akhtar
+ 7
A class that is not an abstract class.
14th Apr 2019, 3:29 AM
Sonic
Sonic - avatar
+ 4
Thanks a lot guys now im got idea
13th Apr 2019, 2:46 PM
K A Samitha Niroshan
K A Samitha Niroshan - avatar
14th Apr 2019, 1:53 AM
Lina Grinchak
Lina Grinchak - avatar
+ 2
class which is not considered to be abstract class and can be instantiated.
16th Apr 2019, 5:39 AM
Drakonchik
Drakonchik - avatar