Answers for "can abstract class can have static methods"

1

Can abstract methods have static keyword

No, abstract method is a method that's meant to be overridden, 
only the instance methods can be override
Posted by: Guest on November-28-2020
0

can abstract class have non abstract methods in java

abstract class AbstractDemo { // Abstract class
   private int i = 0;
   public void display() { // non-abstract method
      System.out.print("Welcome to Tutorials Point");
   }
}
public class InheritedClassDemo extends AbstractDemo {
   public static void main(String args[]) {
      AbstractDemo demo = new InheritedClassDemo();
      demo.display();
   }
}
Posted by: Guest on November-10-2020

Code answers related to "can abstract class can have static methods"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language