常量(Constant)

Posted mrwunotebook

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常量(Constant)相关的知识,希望对你有一定的参考价值。

 常量通常指的是一个固定的值,例如:1、2、3、’a’、’b’、true、false、”helloWorld”等。

      在Java语言中,主要是利用关键字final来定义一个常量。 常量一旦被初始化后不能再更改其值。

声明格式为:

final  type  varName = value;

常量的声明及使用

public class TestConstants {
    public static void main(String[] args) {
        final double PI = 3.14;
        // PI = 3.15; //编译错误,不能再被赋值! 
        double r = 4;
        double area = PI * r * r;
        double circle = 2 * PI * r;
        System.out.println("area = " + area);
        System.out.println("circle = " + circle);
    }
}

 为了更好的区分和表述,一般将1、2、3、’a’、’b’、true、false、”helloWorld”等称为字面常量,而使用final修饰的PI等称为符号常量。 

以上是关于常量(Constant)的主要内容,如果未能解决你的问题,请参考以下文章

Java中定义常量(Constant) 的几种方法

常量(Constant)

基于TensorFlow的深度学习系列教程 2——常量Constant

Java中定义常量(Constant)

PHP: Use of undefined constant ***问题

在 NSLayoutConstraint 上更新“常量”失败,并显示“无法分配给 'constraint' 中的 'constant'”