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) |
返回一个新
float 初始化为指定的代表的值
String ,如通过执行
valueOf 类的方法
Float 。
|
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 对象,该对象保存由参数字符串
s 表示的
double 值。
|
static Float |
Float.valueOf(String s) |
返回一个
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 提取的值,并使用第二个参数给出的基数进行解析。
|