Friday, 9 June 2017

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


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

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

public class AnnotationsDemo
{
    public static void main(String args[])
    {
        Animal animal=new Animal();  
        animal.eatChicken();
    }
}
Click the below link to download the code:

CLICK HERE

No comments:

Post a Comment