Three reasons that you might use a Number object rather than a primitive:

来源:互联网 发布:美国劳工部 非农数据 编辑:程序博客网 时间:2024/05/22 06:58
 

this piece of writing is reprinted from the following URL:

http://download.oracle.com/javase/tutorial/java/data/numberclasses.html

just for the use of self learning.

 

  1. As an argument of a method that expects an object (often used when manipulating collections of numbers).

  2. To use constants defined by the class, such as MIN_VALUE and MAX_VALUE, that provide the upper and lower bounds of the data type.

  3. To use class methods for converting values to and from other primitive types, for converting to and from strings, and for converting between number systems (decimal, octal, hexadecimal, binary).

 

原创粉丝点击