码迷,mamicode.com
首页 > 其他好文 > 详细

静态、 常量

时间:2020-10-13 17:06:05      阅读:16      评论:0      收藏:0      [点我收藏+]

标签:str   static   print   out   初始化   double   命名   demo   输出   

public class Demo1 {
//静态 static
static double pi = 3.14; //静态变量
//final 常量 初始化后的值是不能被改变的,
static final double PI = 3.14; //常量命名大写

public static void main(String[] args) {
//静态变量只能在静态方法中输出
System.out.println(pi);

System.out.println(PI);
}
}

静态、 常量

标签:str   static   print   out   初始化   double   命名   demo   输出   

原文地址:https://www.cnblogs.com/CGuiLin/p/13799175.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!