下面不能实现将数形式的字符串String s=“23”;转换为数23的语句为( )。 A、Integer.parseInt(s); B、Integer.valueOf(s).intValue(); C、Integer.intValue(s); D、new Ingeger(s).intValue();
时间: 2024-02-15 09:05:05 浏览: 63
字符串换成数值
下面不能实现将数形式的字符串String s=“23”;转换为数23的语句为C和D。正确的代码为:
```java
int num = Integer.parseInt(s); //A
int num = Integer.valueOf(s).intValue(); //B
int num = new Integer(s).intValue(); //D
```
阅读全文