首页上一页 1 下一页尾页 1 条记录 1/1页
Annotation功能
发表在Java图书答疑
2018-12-05 悬赏:2 学分
《Java从入门到精通(第4版)》第16章 反射 305页-306页
是否精华
是
否
版块置顶:
是
否
Constructor_Annotation ca =(Constructor_Annotation)constructor.getAnnotation(Constructor_Annotation.class);
为什么不可以写成
Constructor_Annotation ca =constructor.getAnnotation(Constructor_Annotation.class); ?
而 method类 对象和 Field类 对象可以使用第二种形式?