Pergunta de entrevista da empresa Trigyn Technologies

how to create an object of abstract class

Respostas da entrevista

Sigiloso

13 de dez. de 2019

we can't create object of abstract class

1

Sigiloso

19 de out. de 2022

Abstract class: is a restricted class that cannot be used to create objects (to access it, it must be inherited from another class). Abstract method: can only be used in an abstract class, and it does not have a body. The body is provided by the derived class (inherited from).