Java Deprecated Annotation

[Solved] Java Deprecated Annotation | Csharp - Code Explorer | yomemimo.com
Question : Java @Deprecated annotation

Answered by : samer-saeid

class Main { /** * @deprecated * This method is deprecated and has been replaced by newMethod() */ @Deprecated public static void deprecatedMethod() { System.out.println("Deprecated method"); } public static void main(String args[]) { deprecatedMethod(); }
}

Source : | Last Update : Wed, 01 Jun 22

Answers related to java deprecated annotation

Code Explorer Popular Question For Csharp