请在 下方输入 要搜索的题目:

根据以下程序可以判断选项( )没有语法错误。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
推荐参考答案 ( 由 快搜搜题库 官方老师解答 )
联系客服
答案:public class Test{public static void main(String[] args)throws Exception{System.out.println(new Person(20, “John”).toString());}}
专业技术学习
专业技术学习
搜搜题库系统