转自:
Java.lang.Class类 isPrimitive()方法有什么功能呢?
下文讲述Class类中的 isPrimitive()方法的功能,如下所示:
isPrimitive()方法的功能
java.lang.Class. isPrimitive()方法的功能
用于检查Class对象是否为基本类型,如果是基本类型,则返回true,否则返回false
注意事项:
常见的基本类型为:
boolean, byte, char, short, int, long, float, 和double 等原始类型
isPrimitive()方法的语法
语法 public boolean isPrimitive() 参数 无 返回值 当这个类是基本类型时,则此方法返回true 否则返回false
例:
isPrimitive()方法的示例分享
package com.java.other; import org.junit.Test; public class other { /** * java265.com java.lang.Class 测试示例分享 * * @throws Exception * */ @Test public void test() throws Exception { Class c = Class.forName("java.util.HashMap"); System.out.println(c.isPrimitive()); System.out.println(int.class.isPrimitive()); } } ----运行以上代码,将输出以下信息---- false true