使用关键词搜索时可采用的技巧有()
A、多用修饰词
B、太长的关键词改用逻辑组合
C、使用双引号进行精确搜索
D、选用大写字母
参考答案:B, C
若设置了文本框的属性PasswordChar="$",则运行程序时向文本框中输入8个任意字符后,文本框中显示的是______。
A) 8个"$" B) 1个"$" C) 8个"*" D) 无任何内容
下列程序的输出结果是 classA{ int i,j; A(int i,int j) { this.i=i; this.j=j; } void print( ) { System.out.println("i="+i+""+"j="+j) } class B extends A{ int in; B (int i,int j,int m){ super(a,B) ; this.m=m; } void print( ) { Sytem.out.println("m+"+m);} } class C { public static void main (strang argsⅡ) { B b:new B(1,2,3); b.print( ); } }
A.i=1 j=2 m=3
B.m=3
C.i=3 j=2
D.m=1 i=1