更多"在J2EE中,在自己编写的Bean中有代码:  Privat"的相关试题:
[单项选择] 在J2EE中,在自己编写的Bean中有代码: private PropertyChangeSupport changes=new PropertyChangeSupport(this); changes对象的作用是()
A. 使该Bean自动实现方法:addPropertyChangListener和removePropertyChangeListener方法
B. 保持属性变化监听者列表,并点火属性变化事件
C. 通过内省功能,让该Bean集成Listener
D. 使该Bean的作用为Listener
[单项选择] 在J2EE中,在自己编写的Bean中有代码: private PropertyChangeSupport change=new PropertyChangeSupport(this); changes对象的作用域是()。
A. 使该Bean自动实现方法:addPropertyChangeListener和removePropertyChangeListener方法
B. 保持属性变化监听者列表,并点火属性变化事件
C. 通过内省功能,让该Bean继承Listener
D. 使该Bean的作为Listener
[单项选择] 在j2ee中,在自己编写的BEAN中有代码: private PropertyChangeSupport changes=new PropertyChangeSupport(this); changes对象的作用是()
A. 使该BEAN自动实现方法:addPropertyChangeListener和removePropertyChangeListener方法
B. 保持属性变化监听者列表,并点火属性变化事件
C. 通过内省功能,让该Bean继承Listener
D. 使该Bean的作为listener
[单项选择] The Squeaky Bean company has decided to port their web application to a new J2EE 1.4 container. Whilereviewing the application, a developer realizes that in multiple places within the current application, nearlyduplicate code exists that finds enterprise beans. Which pattern should be used to eliminate this duplicatecode?()
A. Transfer Object
B. Front Controller
C. Service Locator
D. Intercepting Filter
E. Business Delegate
F. Model-View-Controller
[单项选择]在J2EE中,在自己编写的Bean中有代码:private PropertyChangeSupport changes=new PropertyChangeSupport(this); changes对象的作用是()。
A. 使该Bean自动实现方法:addPropertyChangeListener和removePropertyChangeListener方法
B. 保持属性变化监听者列表,并点火属性变化事件
C. 通过内省功能,让该Bean继承Listener
D. 使该Bean的作为Listener
[多项选择] 在J2EE中,Servlet1中有如下代码: PrintWriter out = response.getWriter(); Out.println(“请同学们仔细看题目再回答!”); 假设该Servlet运行的平台是Apache Tomcat4.03以上版本。 为了可以在浏览器中显示汉字,可以()。
A. 在这两行代码前加上代码:response.setContentType(“text/html,charset=GBK”);
B. 已经可以显示汉字,不用添加任何代码
C. 在这两行代码前加上代码:response.setContentType(“text/html”);
D. 在这两行代码前加上代码:response.setContentType(“text/html,charset=gb2312”);
[单项选择] 在J2EE中,某一java程序中有如下代码: DataInputStream din = new DataInputStream(new BufferedInputStream (new FileInputStream("employee.dat"))); System.out.print(din.readByte()); 假设在employee.dat文件中只有如下一段字符:abcdefg。则:System.out在屏幕上打印( )。
A. a
B. b
C. 97
D. 98
[单项选择] 在j2ee中,某一Java程序中有如下代码: DataInputStream din =new DataInputStream(new BufferedInputStream(new FileInputStream("employee.dat"))); System.out.print(din.readByte()); 假设在employee.dat文件中只有如下一段字符:abcdefg.则:System.out在屏幕上打印()
A. a
B. b
C. 97
D. 98
[单项选择] 现有代码片段: String s="123"; String sl=S+456; 请问sl的结果是哪项?()
A. 123456
B. 579
C. 编译错误
D. 运行时抛出异常
[单项选择] 分析下列Java代码: class A { public static void main(String[] args) { method(); } static void method() { try { System.out.println("Hello"); System.exit(0); } finally { System.out.println("good-bye"); } } } 编译运行后,输出结果是()。
A. "Hello"
B. "good-bye"
C. "Hello"后面是"good-bye"
D. 代码不能编译
[单项选择] 类Student代码如下: class Student{ String name; int age; Student(String nm){ name = nm; } } 执行语句Student stu = new Student()后,字段age的值是哪项?()
A. 0
B. null
C. false
D. 编译错误
[单项选择] 分析下列java代码 Class A{ Public static void main(String[] args){ Method(); } Static void method(){ try{ System.out.println(“hello”) }finally{ System.out.println(“good-bye”); } } } 编译运行后,输出结果是()
A. “hello”
B. “good-bye”
C. “hello”“good-bye”
D. 代码不能编译
[单项选择] 阅读以下代码: public class Test{ public static void main(){ System.out.println(“x=”+x); } } 请问,代码运行的结果是?()
A. x
B. x=x
C. “x=”+5
D. 编译报错
[单项选择] 考虑下列Java代码: Classc A{ Public static void main(String []args){ Try{ System.out.println(“hello,world”) } } } 其中错误的是()。
A. 没有catch或finally块
B. 没有抛出异常的代码不能出现在try代码块内
C. 如果没有catch块而使用try,main()会总是抛出异常.
D. class A 没有throws IOException
[单项选择] 分析下列代码: Class A{ Public static void main(String[] args){ method(); } static void method(){ try{ System.out.println("Hello"); }finally{ System.out.println("good-bye"); } } } 编译运行后,输出结果是()。
A. "Hello"
B. "good-bye"
C. "Hello""god-bye"
D. 代码不能编译
[单项选择] 考虑下列Java代码: class A { public static void main(String[] args) { try { System.out.println("Hello, World!"); } } } 其中的错误是()。
A. 没有catch或finally块
B. 没有抛出异常的代码不能出现在try代码块内
C. 如果没有catch块而使用try,main()会总是抛出异常.
D. class A 没有throws IOException
[单项选择] 在Java中,下列代码将输出()。 1. public class integerequals 2. { 3. public static void main (String args[]) 4. { 5. Integer a= new Integer(3); 6. Integer b= new Integer(3); 7. System.out.println(a==b); 8. } 9. }
A. 编译器将显示第7行有错误
B. 程序编译并打印true
C. 程序编译并打印false
D. 程序编译但在第7行引起了一个运行期意外