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.yiibai; 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