Java.lang.Class.isPrimitive() 方法

描述

java.lang.Class.isPrimitive()判断指定的Class对象是否代表原始类型。有九个预定义的Class对象代表八种原始类型和void。 这些是由 Java 虚拟机创建的,并且与它们所代表的原始类型具有相同的名称,即 boolean、byte、char、short、int、long、float 和 double。


声明

以下是 java.lang.Class.isPrimitive() 方法的声明。

public boolean isPrimitive()

参数

NA


返回值

当且仅当此类表示原始类型时,此方法才返回 true。


异常

NA


示例

下面的例子展示了 java.lang.Class.isPrimitive() 方法的使用。

package com.tutorialspoint;

import java.lang.*;

public class ClassDemo {

   public static void main(String[] args) {

      // returns the Class object associated with this class
      ClassDemo cl = new ClassDemo();
      Class c1Class = cl.getClass();

      // returns the Class object associated with an integer
      int k = 5;
      Class kClass = int.class;

      // checking for primitive type
      boolean retval1 = c1Class.isPrimitive();
      System.out.println("c1 is primitive type? = " + retval1);

      // checking for primitive type?
      boolean retval2 = kClass.isPrimitive();
      System.out.println("k is primitive type? = " + retval2);
   }
}

让我们编译并运行上面的程序,这将产生下面的结果 −

c1 is primitive type? = false
k is primitive type? = true