下面程序的输出是什么? ( ) class Test { public static void main (String[] args) { try { System.out.println("Welcome to Java"); return; } finally { System.out.println("The finally clause is executed"); } } }
A.
Welcome to Java
B.
先输出Welcome to Java ,再输出The finally clause is executed