根据以下程序可以判断选项( )没有语法错误。public class Person{ public Person(int id, String name)throws Exception{}}class MyException extends Exception{}
A、public class Test{public static void main(String[] args){System.out.println(new Person(20, “John”));}}
B、public class Test{public static void main(String[] args){System.out.println(new Person(20, “John”).toString());}}
C、public class Test{public static void main(String[] args)throws Exception{System.out.println(new Person(20, “John”).toString());}}
D、public class Test{public static void main(String[] args)throws MyException{System.out.println(new Person(20, “John”).toString());}}
发布时间:2025-07-24 07:11:20