什么算自己声明的呢?

来源:4-1 Java 获取成员变量构造函数信息

莫小忘

2015-03-26 16:31

什么算自己声明的呢?

写回答 关注

4回答

  • 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

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

反射——Java高级开发必须懂的

反射,Java高级开发必须要懂的知识点,学好Java高级课程的基础

151467 学习 · 335 问题

查看课程

相似问题