标题1
标题2
标题3
标题4
标题5
标题5
- 列表1
- 列表2
- 列表3
引用别处的句子
插入链接
点击访问百度
这是斜体
这是粗体
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
Class<?> c = Class.forName("com.shopping.shop.bean.Cat");
Method[] methods = c.getMethods();
for (Method method : methods) {
boolean annotationPresent = method.isAnnotationPresent(Descripe.class);
if (annotationPresent) {
Descripe descripe = method.getAnnotation(Descripe.class);
System.out.println(descripe.content()+"-->"+descripe.person()+"-->"+descripe.age());
}
网友评论