What is the use of main method in abstract class?

后端 未结 4 831
攒了一身酷
攒了一身酷 2021-02-05 10:00

I know that we can write main method in abstract class, but what we can achieve from it ?

 public abstract class Sample
 {
         public static void main(Strin         


        
4条回答
  •  野性不改
    2021-02-05 10:23

    You can extend the abstract class and then the child class has a main method without specifying one there.

提交回复
热议问题