Abstract class main() method

Can you have Abstract class main() method? Yes, definitely, because main() is a concrete method and abstract class allows concrete methods. But what you can you do with the main() when you are not allowed to create objects of abstract classes. But, you can create objects of another class and use other class methods by …

Abstract class main() method Read More »