Integer.class vs int.class

前端 未结 4 1190
悲&欢浪女
悲&欢浪女 2020-12-01 05:15

What is the difference between Integer.class, Integer.TYPE and int.class?

acc to me

  1. Integer.class i
4条回答
  •  孤城傲影
    2020-12-01 05:53

    From java.lang.Class.isPrimitive API

    There are nine predefined Class objects to represent the eight primitive types and void. These are created by the Java Virtual Machine, and have the same names as the primitive types that they represent, namely boolean, byte, char, short, int, long, float, and double.

    These objects may only be accessed via the following public static final variables java.lang.Boolean.TYPE, java.lang.Integer.TYPE etc

提交回复
热议问题