Friday, 9 June 2017

Java Tutorial: Annotations in java | Java annotations [Built-In Annotations in Java - @override] ~ foundjava


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

Click the below Image to Enlarge
Java Tutorial: Annotations in java | Java annotations [Built-In Annotations in Java - @override] 
AnnotationsDemo.java
class Animal
{
    void eatChicken()
    {
        System.out.println("Eating 2 chicken legs");
    }
}

class Dog extends Animal
{
    @Override
    void eatchicken()
    {
        System.out.println("Eating 5 chicken legs");
    }
}

public class AnnotationsDemo
{
    public static void main(String args[])
    {
        Animal animal=new Dog();  
        animal.eatChicken();
    }
}
Output
Compile time error:

The method eatchicken() of type Dog must override or implement a supertype method. 
Click the below link to download the code:

CLICK HERE

No comments:

Post a Comment