Click here to watch in Youtube :
https://www.youtube.com/watch?v=GiLrpxO-p58&list=UUhwKlOVR041tngjerWxVccw
Click the below Image to Enlarge
Java Tutorial : Java abstract class and abstract method |
public abstract class Person { abstract public void walk(); public void eat() { System.out.println("Eating Pizza."); } } class Student extends Person { @Override public void walk() { System.out.println("Walks slowly."); } }
public class AbstractClassTest { public static void main(String[] args) { //Person personRef = new Person(); Person personRef = new Student(); personRef.walk(); personRef.eat(); } }
Walks slowly. Eating Pizza.Click the below link to download the code:
https://sites.google.com/site/javaee4321/java/AbstractClassDemo-App.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/AbstractClassDemo-App
Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/f82b5a337c881ba48c0d1163c2b3b206ee915253/BasicJava/AbstractClassDemo-App/?at=master
See also:
No comments:
Post a Comment