Java V01 P40 20150113

1. alleviate:减轻、缓解
   This allevates a major pain for the programmer who wants to move software from one platform to another,
   or even between operating systems on the same platform.


2. in contrast:相反
   In contrast, C and C++ programs use the most efficient integer type for each processor.


3. suffix:后缀
   prefix:前缀


4. hexadecimal:十六进制
   octal:八进制


5. we recommend against the use of octal constants.


6. In Java,the sizes of all numeric types are platform independent.


7. Note that Java does not have any unsigned types.


1. The floating-point types denote numbers with fractional parts.


2. approximately: 大约、近似


3. precision: 精度
   The name double refers to the fact that these numbers have twice the precision of the float type.

你可能感兴趣的:(Java)