double:通常用double,精度是14位有效数。 class VariableTest{ public static void main(String[] args){ double d1 = 123.3; float f1 = 12.3F; } } 1. 2. 3. 4. 5. 6. 3. 字符类型(char) (1)char(1字符 = 2字节) (2)定义char类型变量,通常用一对’ ’ (3)转义字符 (4)unicode字符 clas...