下列关于如下这段代码的说法中正确的是( )。 public class test { public static void throwit() { throw new RuntimeException() } public static void main(String args[]) { try{ System.out.println('你好吗') throwit() System.out.println('出错!') } finally{ System.out.println('结束') } } }