那些坑死人不偿命的面试题---你会做?_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > 那些坑死人不偿命的面试题---你会做?

那些坑死人不偿命的面试题---你会做?

 2014/8/19 21:19:20  huguangsheng  程序员俱乐部  我要评论(0)
  • 摘要:1、下面的代码有什么不妥之处?1、if(username.equals(“zxx”){}2、intx=1;returnx==1?true:false;2、下面程序输出的结果?importjava.util.Date;publicclassTestextendsDate{publicstaticvoidmain(String[]args){newTest().test();}publicvoidtest(){System.out.println(super.getClass().getName(
  • 标签:面试 面试题
1、下面的代码有什么不妥之处?
class="java" name="code">1、 if(username.equals(“zxx”){}
2、 int  x = 1;
    return x==1?true:false;

2、下面程序输出的结果?
import java.util.Date;
public  class Test extends Date{
	public static void main(String[] args) {
		new Test().test();
	}
	
	public void test(){
		System.out.println(super.getClass().getName());
	}
}

3、下面的代码有错?
interface Playable {
    void play();
}
interface Bounceable {
    void play();
}
interface Rollable extends Playable, Bounceable {
    Ball ball = new Ball("PingPang");
}
class Ball implements Rollable {
    private String name;
    public String getName() {
        return name;
    }
    public Ball(String name) {
        this.name = name;        
    }
   public void play() {
        ball = new Ball("Football");
        System.out.println(ball.getName());
    }
}
发表评论
用户名: 匿名