static Byte | Byte.decode(String nm) | 将 String 解码为 Byte 。 |
static Integer | Integer.decode(String nm) | 将 String 解码为 Integer 。 |
static Long | Long.decode(String nm) | 将 String 解码为 Long 。 |
static Short | Short.decode(String nm) | 将 String 解码为 Short 。 |
boolean | Package.isCompatibleWith(String desired) | 将此软件包的规范版本与所需版本进行比较。 |
static byte | Byte.parseByte(String s) | 将字符串参数解析为带符号的十进制 byte 。 |
static byte | Byte.parseByte(String s, int radix) | 将字符串参数解析为第二个参数指定的基数中的带符号 byte 。 |
static double | Double.parseDouble(String s) | 返回一个新 double 初始化为指定的代表的值 String ,如通过执行 valueOf 类的方法 Double 。 |
static float | Float.parseFloat(String s) | 返回由指定的 String 表示的值初始化的新 float ,由类 Float 的 valueOf 方法执行。 |
static int | Integer.parseInt(CharSequence s, int beginIndex, int endIndex, int radix) | 解析CharSequence 参数作为有符号int 指定radix ,在指定的开始beginIndex 并延伸到endIndex - 1 。 |
static int | Integer.parseInt(String s) | 将字符串参数解析为带符号的十进制整数。 |
static int | Integer.parseInt(String s, int radix) | 将字符串参数解析为第二个参数指定的基数中的有符号整数。 |
static long | Long.parseLong(CharSequence s, int beginIndex, int endIndex, int radix) | 解析CharSequence 参数作为有符号long 指定radix ,在指定的开始beginIndex 并延伸到endIndex - 1 。 |
static long | Long.parseLong(String s) | 将字符串参数解析为带符号的十进制 long 。 |
static long | Long.parseLong(String s, int radix) | 将字符串参数解析为第二个参数指定的基数中的带符号 long 。 |
static short | Short.parseShort(String s) | 将字符串参数解析为带符号的十进制 short 。 |
static short | Short.parseShort(String s, int radix) | 将字符串参数解析为第二个参数指定的基数中的带符号 short 。 |
static int | Integer.parseUnsignedInt(CharSequence s, int beginIndex, int endIndex, int radix) | 解析CharSequence 参数为一个无符号int 在指定的radix ,在指定的开始beginIndex 并延伸到endIndex - 1 。 |
static int | Integer.parseUnsignedInt(String s) | 将字符串参数解析为无符号十进制整数。 |
static int | Integer.parseUnsignedInt(String s, int radix) | 将字符串参数解析为第二个参数指定的基数中的无符号整数。 |
static long | Long.parseUnsignedLong(CharSequence s, int beginIndex, int endIndex, int radix) | 解析CharSequence 参数为一个无符号long 在指定的radix ,在指定的开始beginIndex 并延伸到endIndex - 1 。 |
static long | Long.parseUnsignedLong(String s) | 将字符串参数解析为无符号小数 long 。 |
static long | Long.parseUnsignedLong(String s, int radix) | 将字符串参数解析为第二个参数指定的基数中的无符号 long 。 |
static Byte | Byte.valueOf(String s) | 返回一个 Byte 对象,其中包含指定的 String 给出的值。 |
static Byte | Byte.valueOf(String s, int radix) | 返回一个 Byte 对象,当使用第二个参数给出的基数进行解析时,该对象保存从指定的 String 提取的值。 |
static Double | Double.valueOf(String s) | 返回 Double 对象,其中 double 由参数字符串 s 表示的 double 值。 |
static Float | Float.valueOf(String s) | 返回 Float 对象,其中 float 由参数字符串 s 表示的 float 值。 |
static Integer | Integer.valueOf(String s) | 返回一个 Integer 对象,其中包含指定的 String 的值。 |
static Integer | Integer.valueOf(String s, int radix) | 返回一个 Integer 对象,当使用第二个参数给出的基数进行解析时,该对象保存从指定的 String 提取的值。 |
static Long | Long.valueOf(String s) | 返回一个 Long 物体保持在指定的值 String 。 |
static Long | Long.valueOf(String s, int radix) | 返回 Long 对象,当使用第二个参数给出的基数进行解析时,该对象保存从指定的 String 提取的值。 |
static Short | Short.valueOf(String s) | 返回一个 Short 对象,其中包含指定的 String 给出的值。 |
static Short | Short.valueOf(String s, int radix) | 返回一个 Short 对象,当使用第二个参数给出的基数进行解析时,该对象保存从指定的 String 提取的值。 |