标签:style blog http color ar 使用 java sp strong
int | 4字节 | -2 147 483 648~2 147 483 647 |
short | 2字节 | -32 768~32 767 |
long | 8字节 | -9 223 372 036 854 775 808~9 223 372 036 854 775 807 |
byte | 1字节 | -128~127 |
float | 4字节 | 有效数字6~7位 |
double | 8字节 | 有效数字15位 |
\b | 退格 |
\t | 制表 |
\n | 换行 |
\r | 回车 |
\” | 双引号 |
\’ | 单引号 |
\\ | 反斜杠 |
if (x = 0)
double x = 9.997; int nx = (int) x;
double x = 9.997; int nx = (int) Math.round(x);
当将一个数值从一种类型转换为另一种类型时,而又超出了目标类型的表示范围(long->int),那么将截断成一个完全不同的值(e.g. (byte)300 –> 44)
标签:style blog http color ar 使用 java sp strong
原文地址:http://www.cnblogs.com/freedom-wangyb/p/4081737.html