当前位置:  技术问答>java相关

这里的null代表的是Object还是String?

    来源: 互联网  发布时间:2015-05-14

    本文导语:  这里的null代表的是Object还是String? Q78  What is the result of attempting to compile and run the following program  1. public class Test {  2. public void method(Object o) {  3. System.out.println("Object Version");  4. }  5. public void m...

这里的null代表的是Object还是String?

Q78 
What is the result of attempting to compile and run the following program 

1. public class Test { 

2. public void method(Object o) { 
3. System.out.println("Object Version"); 
4. } 

5. public void method(String s) {                 
6. System.out.println("String Version"); 
7. } 

8. public static void main(String args[]) { 
9. Test test = new Test(); 
10. test.method(null); 
11. } 
12. } 

Select one correct answer 
a. The code does not compile. 
b. The code compiles cleanly and shows "Object Version". 
c. The code compiles cleanly and shows "String Version". 
d. The code throws an Exception at Runtime. 
Answer:c


Q79 
What is the result of attempting to compile the following program 

1. public class Test { 

2. public void method(StringBuffer sb) { 
3. System.out.println("StringBuffer Verion"); 
4. } 

5. public void method(String s) { 
6. System.out.println("String Version"); 
7. } 

8. public static void main(String args[]) { 
9. Test test = new Test(); 
10. test.method(null); 
11. } 
12. } 

Select one correct answer 
a. The code does not compile. 
b. The code compiles correctly and shows "StringBuffer Version". 
c. The code compiles correctly and shows "String Version". 
d. The code throws an Exception at Runtime
Answer:a.

|
78) c
按照就"近"原则, 从下到上的顺序.  String是Object的子类.所以选String.


79)  a

由于StringBuffer 和 String 属于同一级别的类, 编译器不知道该调用哪个函数,所以编译错误.

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • C#对象为Null模式(Null Object Pattern)实例教程
  • java命名空间java.sql类types的类成员方法: null定义及介绍
  • linux网络编程里面,accept(listen_fd,NULL,NULL)函数的地址参数为NULL是什么意思?
  • java命名空间javax.lang.model.type枚举typekind的类成员方法: null定义及介绍
  • 请教:null, "null", ""有什么区别
  • java命名空间java.io接口objectstreamconstants的类成员方法: tc_null定义及介绍
  • /usr/doc/*/*> /dev/null 2> /dev/null
  • java命名空间javax.xml类xmlconstants的类成员方法: null_ns_uri定义及介绍
  • if(month!=null&&(!month.equals("null"))) 有必要吗?
  • java命名空间javax.swing.text.html类html的类成员方法: null_attribute_value定义及介绍
  • 请问null!=myobj和myobj!=null有什么不同?
  • Mysql设置查询条件(where)查询字段为NULL
  • SQL语句查询是否为空 =null及null
  • 帮忙解释下?mplayer *.mp3 < /dev/null > /dev/null 2>1&
  • 1>/dev/null 2>/dev/null 跟在命令行后面,什么目的?
  • 问一个简单问题: if (key!=null && key.equals("TT")) 与if (key.equals("TT") && key!=null)这样的条件是相同的么?
  • sql语句查询=null及null是否为空的判断方法
  • 一个条件null问题(C shell)高分
  • 如何实现判断一个字符串为null?
  • 请问strtok(NULL,delimits)是什么意思?
  • /dev/null, /dev/zero 是指什么设备?
  • 覆盖了/dev/null,系统启动不了


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3