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提取的值。
|