谈谈Java中的Class类

Class

Instances of the class {@code Class} represent classes and
 * interfaces in a running Java application.  An enum is a kind of
 * class and an annotation is a kind of interface.  Every array also
 * belongs to a class that is reflected as a {@code Class} object
 * that is shared by all arrays with the same element type and number
 * of dimensions.  The primitive Java types ({@code boolean},
 * {@code byte}, {@code char}, {@code short},
 * {@code int}, {@code long}, {@code float}, and
 * {@code double}), and the keyword {@code void} are also
 * represented as {@code Class} objects.

上面那段文字的意思大概就是所有的类、枚举、接口、注解、数组、基本类型、还有void都是Class。

用一个简单的例子证明一下。

枚举

public enum EnumTest {
}

接口

public interface InterfaceTest {
}

注解

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD,ElementType.TYPE})
public @interface AnnotationTest {
}

测试例子

public class ClassTest {
    public static void main(String[] args) {

        if (Object.class instanceof Class) {
            System.out.println(Object.class.getName()+ " :Object is Class");
        }

        if (String.class instanceof Class) {
            System.out.println(String.class.getName() + " :String is Class");
        }

        if (Class.class instanceof Class) {
            System.out.println(Class.class.getName() + " :Class is Class");
        }

        if (EnumTest.class instanceof Class) {
            System.out.println(EnumTest.class.getName() + " :EnumTest is Class");
        }

        if (InterfaceTest.class instanceof Class) {
            System.out.println(InterfaceTest.class.getName() + " :InterfaceTest is Class");
        }

        if (AnnotationTest.class instanceof Class) {
            System.out.println(AnnotationTest.class.getName() + " :AnnotationTest is Class");
        }

        if (int[].class instanceof Class) {
            System.out.println(int[].class.getName() + " : int[] is Class");
        }

        if (boolean.class instanceof Class) {
            System.out.println(boolean.class.getName() + " : boolean is Class");
        }

        if (byte.class instanceof Class) {
            System.out.println(byte.class.getName() + " : byte is Class");
        }

        if (char.class instanceof Class) {
            System.out.println(char.class.getName() + " : char is Class");
        }

        if (short.class instanceof Class) {
            System.out.println(short.class.getName() + " : short is Class");
        }

        if (int.class instanceof Class) {
            System.out.println(int.class.getName() + " : int is Class");
        }

        if (long.class instanceof Class) {
            System.out.println(long.class.getName() + " : long is Class");
        }

        if (float.class instanceof Class) {
            System.out.println(float.class.getName() + " : float is Class");
        }

        if (double.class instanceof Class) {
            System.out.println(double.class.getName() + " : double is Class");
        }

        if (void.class instanceof Class) {
            System.out.println(void.class.getName() + " : void is Class");
        }

        // Integer.TYPE 和 int.class 是等价的
        if (Integer.TYPE == int.class) {
            System.out.println(true);
        }
    }
}

输出结果:

java.lang.Object :Object is Class
java.lang.String :String is Class
java.lang.Class :Class is Class
com.type.EnumTest :EnumTest is Class
com.type.InterfaceTest :InterfaceTest is Class
com.type.AnnotationTest :AnnotationTest is Class
[I : int[] is Class
boolean : boolean is Class
byte : byte is Class
char : char is Class
short : short is Class
int : int is Class
long : long is Class
float : float is Class
double : double is Class
void : void is Class
true

获取Class的三种方式

  1. 利用实例化对象调用getClass()方法获取Class
  2. 运用.class的方式来获取Class
    例子
  3. 运行Class类的静态方法Class.forName(String className),className代表全限定类名。
public class Test {
    public static void main(String[] args) {
        System.out.println("第一种");
        Test test = new Test();
        System.out.println(test.getClass());

        System.out.println("第二种");
        System.out.println(Test.class);

        System.out.println("第三种");
        try {
            System.out.println(Class.forName("com.type.Test"));
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        }
    }
}

运行结果

第一种
class com.type.Test
第二种
class com.type.Test
第三种
class com.type.Test

Class类常用的方法

首先思考一下,在编写一个类的时候,是由哪些部分,比如有成员变量,成员方法,构造函数,继承哪个类,实现了哪些接口,加上注解,内部类等等。

1.有关注解的几个方法

getAnnotation()
getAnnotations()
getDeclaredAnnotation()
getDeclaredAnnotations()

getAnnotations() 与 getDeclaredAnnotations() 的区别

getAnnotations()除了该类的注解之外,还能获得父类的被声明允许继承的注解

getDeclaredAnnotations()只能获取该类的注解

看一下例子吧

注解类

@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD,ElementType.TYPE})
public @interface AnnotationTest {

}

允许继承的注解类

@Inherited
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD,ElementType.TYPE})
public @interface AnnotationParentTest {

}
@AnnotationParentTest
public class ClazzParent {

}
@AnnotationTest
public class Clazz extends ClazzParent {

}

测试类

public class ClazzTest {
    public static void main(String[] args) {
        Class<?> clazz = null;

        try {
            clazz = Class.forName("com.type.Clazz");
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        }

        AnnotationTest annotation = clazz.getAnnotation(AnnotationTest.class);
        System.out.println("getAnnotation() : " + annotation);

        AnnotationParentTest annotation3 = clazz.getAnnotation(AnnotationParentTest.class);
        System.out.println("getAnnotation() : " + annotation3);


        Annotation[] annotations = clazz.getAnnotations();
        for (Annotation annotation1 :annotations) {
            System.out.println("getAnnotations() : " + annotation1);
        }


        Annotation declaredAnnotation = clazz.getDeclaredAnnotation(AnnotationTest.class);
        System.out.println("getDeclaredAnnotation() : " + declaredAnnotation);

        AnnotationParentTest declaredAnnotation1 = clazz.getDeclaredAnnotation(AnnotationParentTest.class);
        System.out.println("getDeclaredAnnotation() : " + declaredAnnotation1);


        Annotation[] declaredAnnotations = clazz.getDeclaredAnnotations();
        for (Annotation annotation2 : declaredAnnotations) {
            System.out.println("getDeclaredAnnotations() : " + annotation2);
        }
    }
}

测试结果

getAnnotation() : @com.type.AnnotationTest()
getAnnotation() : @com.type.AnnotationParentTest()
getAnnotations() : @com.type.AnnotationParentTest()
getAnnotations() : @com.type.AnnotationTest()
getDeclaredAnnotation() : @com.type.AnnotationTest()
getDeclaredAnnotation() : null
getDeclaredAnnotations() : @com.type.AnnotationTest()

2. 有关构造函数的几个方法

getConstructor()
getConstructors()
getDeclaredConstructor()
getDeclaredConstructors()

getConstructors() 与 getDeclaredConstructors() 的区别

getConstructors()只能获取public修饰的 构造函数,getDeclaredConstructors()能获取该类所有的构造函数,不管是public 还是private

@AnnotationTest
public class Clazz extends ClazzParent implements Serializable {

    private int a;

    private String name;

    private Clazz() {

    }

    public Clazz(int a,String name) {
        this.name = name;
    }

    public int getA() {
        return a;
    }

    public void setA(int a) {
        this.a = a;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

}
public class ClazzTest {
    public static void main(String[] args) {
        Class<?> clazz = null;

        try {
            clazz = Class.forName("com.type.Clazz");
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        }

        //只能拿到public的构造函数
        Constructor<?>[] constructors = clazz.getConstructors();
        for (Constructor constructor : constructors) {
            System.out.println("getConstructors : " + constructor.getParameterCount());
        }

        Constructor<?>[] declaredConstructors = clazz.getDeclaredConstructors();
        for (Constructor constructor : declaredConstructors) {
            System.out.println("getDeclaredConstructors : " + constructor.getParameterCount());
        }
    }
}

测试结果

getConstructors : 2
getDeclaredConstructors : 0
getDeclaredConstructors : 2

如果类中没有构造函数,会有一个默认的public的构造函数

3.关于Field的几个方法

getField()
getFields() //返回某个类的所有(public)变量包括其继承类的公用变量
getDeclaredField() //所有的成员变量
getDeclaredFields()
public class Clazz {

    private int a;

    private String name;

    protected String name1;

    public String name2;

    String name3;

}

测试结果

getFields : name2
getDeclaredFields : a
getDeclaredFields : name
getDeclaredFields : name1
getDeclaredFields : name2
getDeclaredFields : name3

4.关于Method的几个方法

getMethods() //getMethod(s):返回某个类的所有公用(public)方法包括其继承类的公用方法

getDeclaredMethods() //返回自身所有的方法,但不包括继承的方法
public class Clazz {

    private int a;

    private String name;

    protected String name1;

    public String name2;

    String name3;

    public int getA() {
        return a;
    }

    public static void print(){

    }

    private static void print2(){

    }

    private void setA(int a) {
        this.a = a;
    }

    protected String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

}

测试结果

getMethods : setName
getMethods : print
getMethods : getA
getMethods : wait
getMethods : wait
getMethods : wait
getMethods : equals
getMethods : toString
getMethods : hashCode
getMethods : getClass
getMethods : notify
getMethods : notifyAll
getDeclaredMethods : getName
getDeclaredMethods : setName
getDeclaredMethods : print
getDeclaredMethods : setA
getDeclaredMethods : getA
getDeclaredMethods : print2
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,047评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,807评论 3 386
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,501评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,839评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,951评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,117评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,188评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,929评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,372评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,679评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,837评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,536评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,168评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,886评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,129评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,665评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,739评论 2 351

推荐阅读更多精彩内容