假设Pattern p=Pattern.compile("\\d+");Matcher m=p.matcher("22bb23"); 则m.matches()的结果为true。
查看答案
假设Pattern p=Pattern.compile("\\d+");Matcher m=p.matcher("22bb23"); 则m.lookingAt()的返回结果为true.
A. 对
B. 错
假设Pattern p=Pattern.compile("\\d+");Matcher m=p.matcher("aa2223"); 则m2.lookingAt()的返回结果为true.
A. 对
B. 错
Class类不是java.lang包中的类
A. 对
B. 错
String创建出来的对象是一个常量,是不能更改的。
A. 对
B. 错