问答详情
源自:4-1 Java 获取成员变量构造函数信息

什么算自己声明的呢?

什么算自己声明的呢?

提问者:莫小忘 2015-03-26 16:31

个回答

  • NewCanon
    2015-07-24 09:21:24

    自己声明的就是这个类里自己有代码写出来的呗,不是从父类继承过来的

  • wonderq_ubuntu
    2015-06-22 09:36:14

    我觉得,就是声明了的,存在的,都算declared,不管修饰符,这个是getdeclaredFields()方法的官方解释:

        

           Returns an array of Field objects reflecting all the fields      declared by the class or interface represented by this Class      object. This includes public, protected, default (package) access, and      private fields, but excludes inherited fields.     

        但是不包括继承的成员变量。


  • 莫小忘
    2015-03-27 08:51:30

    可是后台的函数都不是自己写的呀


  • 发条橙
    2015-03-26 19:48:56

    就是你写的 不是系统自带的函数