zoukankan      html  css  js  c++  java
  • java.lang.Class.isPrimitive()用法解析

    一、概述:

    此方法主要用来判断Class是否为原始类型(boolean、char、byte、short、int、long、float、double)。

    二、格式:

    Class.isPrimitive(),原始类型下返回true

    三、示例:

    public static void main(String[] args){
    
        Class stringClass=String.class;
        System.out.println("String is primitive type:"+stringClass.isPrimitive());
    
        Class booleanClass=Boolean.class;
        System.out.println("Boolean is primitive type:"+booleanClass.isPrimitive());
    
        Class booleanType=boolean.class;
        System.out.println("boolean is primitive type:"+booleanType.isPrimitive());
    
        Class byteType=byte.class;
        System.out.println("byte is primitive type:"+byteType.isPrimitive());
    
        Class charType=char.class;
        System.out.println("char is primitive type:"+charType.isPrimitive());
    
        Class shortType=short.class;
        System.out.println("short is primitive type:"+shortType.isPrimitive());
    
        Class intType=int.class;
        System.out.println("int is primitive type:"+intType.isPrimitive());
    
        Class longType=long.class;
        System.out.println("long is primitive type:"+longType.isPrimitive());
    
        Class floatType=float.class;
        System.out.println("float is primitive type:"+floatType.isPrimitive());
    
        Class doubleType=double.class;
        System.out.println("double is primitive type:"+doubleType.isPrimitive());
    }
    

    结果输出:

    String is primitive type:false
    Boolean is primitive type:false
    boolean is primitive type:true
    byte is primitive type:true
    char is primitive type:true
    short is primitive type:true
    int is primitive type:true
    long is primitive type:true
    float is primitive type:true
    double is primitive type:true
    
      注:文章中难免有不足之处,欢迎评论、互动、指正。

    作者: i-nine
    原创不易,本文版权归作者所有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
  • 相关阅读:
    ubuntu实时显示网速cpu占用和内存占用率
    删除以....开头的所有文件
    0.0.....1 至 0.99.......9 之间正则
    引入腾讯视频播放,可控制是否暂停播放
    解决微信小程序textarea层级太高遮挡其他组件的问题
    查看某分支推送记录
    小程序下载canvas生成图片
    微信小程序企业付款到个人
    秒 转化为 时:分:秒 ------- 类似倒计时
    iOS--崩溃日志的格式化分析---格式化crash日志
  • 原文地址:https://www.cnblogs.com/ninth/p/6164471.html
Copyright © 2011-2022 走看看