A.long B.byte C.int D.short
单项选择题在java程序中的my.jsp中要使用标记扩展,下列项正确的是()
A.<%@taglibURL="/hello"prefix="examples"%> B.<%@taglibURI="/hello"prefix="examples"%> C.<%@tagliburl="/hello"prefix="examples"%> D.<%@tagliburi="/hello"prefix="examples"%>
单项选择题正则表达式([0-9]{3})-([a-z]{3})-([a-z]*?ab)与下列哪个字符串相匹配()
A.123-abc{3}-cab B.123{3}-abc-cab C.123-abc-cb D.123-abc-ccab
单项选择题定义字符串:Stringstr= abcdefg ;则str.substring(2,5).indexOf(’d’)的结果是:()
A.1 B.3 C.2 D.4
单项选择题以下循环执行()次。
A.无限 B.10 C.9 D.11
单项选择题以下语句输出的结果是:() Stringstr= 1234 ; intx=4,y=5; str=str+(x+y); System.out.println(str);
A.12349 B.123445 C.会产生编译错误 D.123+4+5