黑馬程式員--Java基礎學習之內省(IntroSpector)、注釋(Annotation)

來源:互聯網
上載者:User

---------------------- ASP.Net+Android+IOS開發、.Net培訓、期待與您交流! ----------------------

Person p = new Person("zhangsan",23);PropertyDescriptor pd = new PropertyDescriptor("name",p.getClass());Method methodGetName = p.getReadMethod();Object retVal = methodGetName.invoke(p);Method methodSetName = p.getWriteMethod();Object retVal = methodGetName.invoke(p,"zhang");

(3)BeanUtils可以操作map


PropertyUtils不進行類型轉換

程式碼分析:通過中繼資料對代碼進行分析(使用反射)

@Override    RetentionPolicy.SOURCE

@Deprecated         RetentionPolicy.RUNTIME

@SuppressWarningsRetentionPolicy.SOURCE

@Target(ElementType.METHOD)//該註解用在方法上

@Target({ElementType.METHOD,ElementType.Type})//該註解用在方法和類型上

Class類實現Type介面  Class  Enum  @Override  Interface 都是Type(1.5之後)

@Retention(RetentionPolicy.RUNTIME)//元註解 ,三個階段@Interface A{}

@Aclass B{}

@Aclass C{      if(C.class.isAnnotationPresent(A.class)){             A ann = (A)C.class.getAnnotation(A.class);        }}

@Retention(RetentionPolicy.RUNTIME)//元註解 ,三個階段@Interface A{String color() default "red";Strng value();//value()屬性很特殊int[] arr() default {1,2,2};}@A(color="red",value="set",arr={1,2,3})//設定,如果只有value屬性需要設定時,可以把=號省略@A("setValue")class C{if(C.class.isAnnotationPresent(A.class)){A ann = (A)C.class.getAnnotation(A.class);  sop(ann.color());//使用sop(ann.value());//使用sop()}}

---------------------- ASP.Net+Android+IOS開發、.Net培訓、期待與您交流! ----------------------

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.