标签:一个 operator double list fence 常用 小数 opera -o
java是强类型语言。意味着变量都必须先定义后才能使用。
强类型语言提升了安全性,但降低了运行速度。
int
byte
short
long
float
double
char
boolean
String
public class data_type_practice {
public static void main(String[] args) {
String a = ("hello");
?
//整数。
int num1 = 10; //int赋值范围是正负21亿。最常用。占4个字节。
byte num2 = -128; //byte赋值范围在 -128~127。占1个字节。
short num3 = 30000; //short赋值范围在 -32768~32767。占2个字节。
long num4 = 1234567890L; //long类型要在数字最后加字母L。占8个字节。
?
//小数:浮点数。
float num5 = 50.111111111F; //float类型在数字最后要加字母F。占4个字节。
double num6 = 3.1415926; //占8个字节。
?
//字符
char name = ‘中‘; //char 表示一个字符。字符可以是中文或英文大小写或者字符。
char name1 = ‘A‘;
char o = ‘_‘;
?
//字符串
String flag = "洛天人"; // 字符串String 不是关键词,而是一个 类。
?
//布尔值:代表是非。占一位。
boolean js = true;
boolean sj = false;
?
?
System.out.println(flag);
System.out.println(a);
System.out.println(num1);
1bit 表示 1位。
1byte 表示 一个字节。1B = 8b。
1024B = 1KB。
1024KB = 1M。
1024M = 1 G。
1024G = 1TB。
标签:一个 operator double list fence 常用 小数 opera -o
原文地址:https://www.cnblogs.com/qianyeya/p/14207432.html