问题:单选题当动作监听器激发时,会调用什么函数?()A onActivated函数;B actionPerformed函数;C doAction函数;D checkActionOn函数;...
查看答案
问题:多选题设置分隔条面板的常用参数有哪些?()A分隔条的宽度B单击展开模式C分隔条的分隔方式D分隔百分比E左、右面板的实际大小...
问题:单选题无模式对话框的特点是什么?()A 是顶级对话框,不需要依附于框架B 在显示时,不会屏蔽用户向对话框所属的主框架键入的所有内容C 就是通用的对话框的简称D 在显示时,将屏蔽用户向对话框所属的主框架键入的所有内容...
问题:public class Pet{ private String name; public Pet(){ S...
问题:以下算术运算符中错误的是() ...
问题:现有: class Test2 f public static void main (String [] ar...
问题:单选题public void testIfA(){ if(testIfB("True")){ System.out.println("True"); }else{ System.out.println("Nottrue"); } } public Boolean testIfB(Stringstr){ return Boolean.valueOf(str); } What is the result when method testIfA is invoked?()A TrueB NottrueC Ane...
问题:Java中的引用变量需要初始化,简单变量可以不进行初始化。...
问题:以下哪个组件不支持动作监听器?()...
问题:单选题现有: 1. interface Animal { 2. void eat(); 3. } 4. 5. // insert code here 6. 7. public class HouseCat implements Feline { 8. public void eat() { } 9. } 和以下三个接口声明: interface Feline extends Animal { } interface Feline exte...
问题:线程由以下哪些部分组成?() ...
问题:单选题包访问级的成员能被哪些对象访问到()A 子类B 所有类C 同一个包中的其他类D 同一个包中的子类...
问题:以下关于File对象的描述中,错误的是()...
问题:单选题现有如下五个声明: Linel: int a_really_really_really_long_variable_name=5 ; Line2: int _hi=6; Line3: int big=Integer. getlnteger("7”); Line4:int $dollars=8; line5: int %opercent=9; 哪行无法通过编译?()A Line1B Line3C Line4D Line5...
问题:单选题class Test4 { public static void main(String [] args) { boolean x = true; boolean y = false; short z = 42; if((z++ = = 42) (y = true)) z++; if((x = false) || (++z = = 45)) z++; System.out.println("z = " + z); } } 结果为:()A z = 42B z ...
问题:单选题以下程序执行的结果是什么?() int[] myArray = new int[3]; try{ for(int i=0; i=myArray.length;i++){ myArray[i]=i*3; System.out.println("myArray数组的第"+i+"个元素的值是:"+myArray[i]); } }catch(ArrayIndexOurOfBoubsException e){ System.out.println("数组下标越界");}A 程序执行...
问题:单选题class Order3 implements Runnable { public static void main(String [] args) { new Thread(new Order3()).start(); for(int x = 0; x 〈 10; x++) System.out.print("m"); } public void run() { for(int x = 0; x 〈 10; x++) { //insert code here System.out.p...
问题:JAVA中如何区分对象和指向对象的指针()...
问题:单选题现有: class Ifs { public static void main (String [] args) { boolean state=false; int i=2; if( (++i2) && (state=true)) i++; if( (++i4) l l (state=false)) i++; System.out .println (i); } } 结果为:()A 6B 5C 4D 编...
问题:以下关于return语句的描述,错误的是() ...