Java V01 P40 20140108

1. Java is a strongly typed language.
   Java是一种强类型语言。


2. Java has a arbitrary precision arithmetic package.
   Java有一个能够表示任意精度的算术包。


3. fractional parts:小数部分


4. Negative values are allowed.
   允许为负值。


5. In most situations,the int type is the most practical.
   在通常情况下,int类型最常用。


6. resort to: 诉诸、求助于
   If you want to represent the number of inhabitants of our planet, you'll need to resort to long.
   如果表示星球上的居住人数,就需要使用long类型了。


7. The byte and short types are mainly intended for specialized applications, such as low-level file handling, or for large arrays when storage space is at a premium.
   byte和short类型主要用于特殊应用(诸如,底层文件处理),或者用于当存储空间稀缺时的大数组。

你可能感兴趣的:(Java)