Constructs a new Long with the specified primitive long value. @param value the primitive long value to store in the new instance.
(long value)
| 73 | * the primitive long value to store in the new instance. |
| 74 | */ |
| 75 | public Long(long value) { |
| 76 | this.value = value; |
| 77 | } |
| 78 | |
| 79 | /** |
| 80 | * Constructs a new {@code Long} from the specified string. |