表达式"3.1415926".matches("[0-9]+[.]{1}[0-9]+")的值是true.
查看答案
StringBuffer对象的字符序列是可修改的。
A. 对
B. 错
表达式"89762.34".matches("[0-9.]+")的值是true。
A. 对
B. 错
Integer.parseInt("12.9");会触发NumberFormatException异常。
A. 对
B. 错
对于如下代码,下列哪个叙述是正确的?public class E {public static void main (String[]args){String str = new String ("你好");modify(str);System.out.println(str);//【代码】}public static void modify (String s){s = new String("hello");}}
A. 程序编译出现错误。
B. 程序标注的【代码】的输出结果是:hello。
C. 程序标注的【代码】的输出结果是:你好。
D. 程序标注的【代码】的输出结果是null。