Ad Code

✨🎆 Codex 1.0 PLACEMENT READY PROGRAM! 🎆✨

Get 75% Discount Early bird offer CLICK to JOIN CodeX 1.0 click

What is Concrete Class in Java

What is Concrete Class in Java?

It is the class which is used to implement the functionality of abstract class and interface is called a concrete class.

It is similar to a normal class but it will be associated with the interface method and abstract class Method.

interface A

{

    void fun();

}

class B implements A

{

    public void fun()

   {

  }

}


B is called a concrete class.

Post a Comment

0 Comments