码迷,mamicode.com
首页 > 编程语言 > 详细

Java常量定义

时间:2015-04-02 22:39:13      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:java   常量   

Java常量定义


/**
	 * char 类型常量
	 */
	private static final char CHAR = 'A';
	
	/**
	 * byte 类型常量
	 */
	private static final byte BYTE = 1;
			
	/**
	 * short 类型常量
	 */
	private static final short SHORT = 10;
	
	/**
	 * int 类型常量
	 */
	private static final int INT = 100;
	
	/**
	 * long 类型常量
	 */
	private static final long LONG = 100;
	
	/**
	 * float 类型常量
	 */
	private static final float FLOAT = 120f;
	
	/**
	 * double 类型常量
	 */
	private static final double DOUBLE = 120.00;
	
	/**
	 * double 类型常量
	 */
	private static final boolean BOOLEAN = true;
	
	/**
	 * String 类型常量
	 */
	private static final String SUCCESS = "success";


Java常量定义

标签:java   常量   

原文地址:http://blog.csdn.net/you23hai45/article/details/44837973

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