Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Write A Java Program To Explain Annotation Concept
- //3. @Deprecated
- class A
- {
- void m()
- {
- System.out.println("hello m");
- }
- @Deprecated
- void n()
- {
- System.out.println("hello n");
- }
- }
- class Ex7 // Ex7 is FileName
- {
- public static void main(String args[])
- {
- A a = new A();
- a.n();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement