2
Answers

how to use reference of a abstract class?

samrat matte

samrat matte

10y
627
1
childclass obj=new childclass;
absparent p=obj;
p.test1();p.test2();p.test3();
where test1 and test 2 are methods of abstract class
while test 3 are methods of child class

Answers (2)