Thursday 4 February 2016

Java Tutorial : Java abstract class(Static members)


Click here to watch in Youtube :
https://www.youtube.com/watch?v=i56Bw2r5YXY&index=1&list=UUhwKlOVR041tngjerWxVccw

Click the below Image to Enlarge
Java Tutorial : Java abstract class(Static members) 
Person.java
public abstract class Person
{

    public static int numberOfLegs = 2;
    
    abstract public void walk();

    public static void eat()
    {
        System.out.println("Eating Pizza.");
    }

}
AbstractClassTest.java
public class AbstractClassTest
{

    public static void main(String[] args)
    {
        System.out.println("Number of Legs = "+Person.numberOfLegs);
        Person.eat();       
    }

}
Output
Number of Legs = 2
Eating Pizza.
Click the below link to download the code:
https://sites.google.com/site/javaee4321/java/AbstractClassDemo-Static-App.zip?attredirects=0&d=1

Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/AbstractClassDemo-Static-App

Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/f82b5a337c881ba48c0d1163c2b3b206ee915253/BasicJava/AbstractClassDemo-Static-App/?at=master

See also:
  • All JavaEE Viedos Playlist
  • All JavaEE Viedos
  • All JAVA EE Links
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • Java Collection Framework Tutorial
  • 4 comments:

    1. Great Article android based projects

      Java Training in Chennai Project Center in Chennai Java Training in Chennai projects for cse The Angular Training covers a wide range of topics including Components, Angular Directives, Angular Services, Pipes, security fundamentals, Routing, and Angular programmability. The new Angular TRaining will lay the foundation you need to specialise in Single Page Application developer. Angular Training Project Centers in Chennai

      ReplyDelete
    2. Very easy to understand your article. Thanks for taking the time to share this article.
      UPVC Doors in Chennai
      Aluminum windows in Chennai
      UPVC windows in Chennai

      ReplyDelete