Online Java Compiler By
JavaTpoint.com
import java.io.LineNumberInputStream; public class ClassisAnnotationPresentExample1 { public static void main(String... args) { Class
class1 = ClassisAnnotationPresentExample1.class; boolean bl = class1.isAnnotationPresent(Deprecated.class); System.out.println("Check isAnnotationPresent ::: " +bl); } }
Output