不可以么?- public class Test {
- public static void main(String[] args) {
- TestConstructor tc = new TestConstructor();
- System.out.println("helloworld");
- }
- }
- class TestConstructor {
- public TestConstructor(){
- try {
- Thread.sleep(5000);
- } catch (InterruptedException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- }
- }
复制代码 以上代码正常运行 5秒钟后打印出helloworld
但是在public TestConstructor(){}却不能向外抛Exception,这我也不知道为啥。楼下请继续解答。 |