美文网首页CreatShare
Java(常量的使用与概述)

Java(常量的使用与概述)

作者: 神奇渔夫 | 来源:发表于2017-05-11 20:33 被阅读4次

    常量分类:a>字面值常量 b>自定义常量

    A>字面值常量
    ·字符串常量
    ·整数 常量
    ·小数常量
    ·字符常量
    ·布尔常量 true/false
    ·空长量 null
    class ConstantDemo {
    public static void main(String[] args) {
    //字符串常量的输出
    System.out.println("hello");

    //整数常量的输出
    System.out.println(100);
    
    //小数常量的输出
    System.out.println(100.10);
    
    //字符常量的输出
    System.out.println('a');
    
    //布尔常量的输出
    System.out.println(true);
    

    }
    }

    相关文章

      网友评论

        本文标题:Java(常量的使用与概述)

        本文链接:https://www.haomeiwen.com/subject/nrhatxtx.html