你能通过下面的3道java面试题吗?

1.java static inner class 和 non-static inner class的区别?

   有人会说静态的只能访问外部类的静态成员,非静态的对应非静态的.不错是这样的,可是你知道为什么会这样吗?
有人会说这个是java语法规则,是的.可还是没有讲出实质性的内容.这种题目在面试的时候一下子就可以判断出你对java的熟悉深度了.

 

2.请写出一个singleton模式的class.

你如果写出下面的2种样式,我会问你:

请问你如何在同一个jvm中并且在同一个classLoader中得到它的多个实例?(请不要奇怪)

样列1:

public class Singleton {  
 private final static Singleton instance=new Singleton();
 private Singleton(){} 
 public static Singleton newInstance(){  
  return instance;  
 } 
}

样列2:

public class Singleton { 
 private static volatile int instanceCounter=0; 
 private Singleton(){
  if(instanceCounter>0)
   throw new RuntimeException("can't create multi instances!");
  instanceCounter++;
 }
 
 private final static Singleton instance=new Singleton();
 public static Singleton newInstance(){  
  return instance;  
 }
}

 

3.java 的exception 分checked,unchecked.像RuntimeException,Error都不用显式try-catch,直接可以throw,

但是一般的exception是必须catch的:

throw new Exception("..."),如果这句不在try-catch体内,或者方法的声明没有throws,那么编译是通不过的.

ok,请看如下的代码:

 

public class TestClass { 
 
 public void  testMethod()/*这里没有throws 哦!*/{  

          ......
           throw new Exception("force throw the exception...");

          ......
 }


}

很明显上面的方法如果这样的话是通不过编译的,但是如果非得要你在testMethod体中在运行时throw一个很一般的Exception,请问你有办法吗?除强制类型转换 throw (RuntimeException)new Exception(); 之外呢?

 

 

这3道题可不是sun出的考题哦!不信你搜搜......

 

 

 

 

 

 

你可能感兴趣的:(java,jvm,面试,ide,sun)