Parses the specified string as a signed decimal long value. The ASCII character \u002d ('-') is recognized as the minus sign. @param string the string representation of a long value. @return the primitive long value represented by string. @throws NumberFormatException
(String string)
| 304 | * can not be parsed as a long value. |
| 305 | */ |
| 306 | public static long parseLong(String string) throws NumberFormatException { |
| 307 | return parseLong(string, 10); |
| 308 | } |
| 309 | |
| 310 | /** |
| 311 | * Parses the specified string as a signed long value using the specified |