给出一段程序,试判断哪个是正确的编写/运行结果?(             )
public class MyProgram {
      public static void main (String args[]){
               try {
                         System.out.println(“Hello world ”); 
               }
               finally  {
                     System.out.println(“Finally executing”); 
               }
       } 
 }
A、无法编译,因为没有指定异常
B、无法编译,因为程序中不包含 catch 子句
C、运行结果:
Hello world
D、运行结果:
Hello world 
Finally executing