Monday, 6 February 2017

Annotation : Deprecated




public class DeprecatedAnnot extends TestAnnotation3{

    public static void main(String args[]) {

        DeprecatedAnnot a = new DeprecatedAnnot();
        a.n();
    }
}

class TestAnnotation3 {
    void m(){System.out.println("hello m");}

    @Deprecated    void n(){System.out.println("hello n");}

    }

No comments:

Post a Comment