Java Class isPrimitive() 方法



描述

Java Class isPrimitive() 方法用于确定指定的 Class 对象是否表示一个原始类型。有九个预定义的 Class 对象来表示八种原始类型和 void。这些是由 Java 虚拟机创建的,并且具有与它们表示的原始类型相同的名称,即 boolean、byte、char、short、int、long、float 和 double。

声明

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

public boolean isPrimitive()

参数

返回值

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

异常

获取非原始类的原始状态示例

以下示例演示了 java.lang.Class.isPrimitive() 方法的使用。在这个程序中,我们创建了一个 ClassDemo 的实例,然后使用 getClass() 方法检索该实例的类。使用 isPrimitive(),我们检索了类的原始类状态,并打印结果。

package com.tutorialspoint;

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();

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

输出

让我们编译并运行上述程序,这将产生以下结果:

c1 is primitive type? = false

获取原始类的原始状态示例

以下示例演示了 java.lang.Class.isMemberClass() 方法的使用。在这个程序中,我们使用了 int 的类,然后使用 isPrimitive() 检索类的原始类状态,并打印结果。

package com.tutorialspoint;

public class ClassDemo {

   public static void main(String[] args) {

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

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

输出

让我们编译并运行上述程序,这将产生以下结果:

k is primitive type? = true
java_lang_class.htm
广告