StudentTest.java 358 B

12345678910111213141516
  1. package J20250807.annoation;
  2. /**
  3. * @author WanJl
  4. * @version 1.0
  5. * @title StudentTest
  6. * @description
  7. * @create 2025/8/7
  8. */
  9. public class StudentTest {
  10. public static void main(String[] args) {
  11. Class<Student> clazz = Student.class;
  12. boolean b = clazz.isAnnotationPresent(Demo01_Annotation.class);
  13. System.out.println(b);
  14. }
  15. }