【单选题】The US Copyright Law of 1976 provides a term of ___________
C.
the lifetime of the author plus 50 years
【单选题】分析以下代码:public class Test { public static void main(String[] args) throws MyException { System.out.println("Welcome to Java"); }}class MyException extends Error {}
A.
最好不要扩展 和抛出 Error 的类,因为 Error 会引发致命错误,从而终止程序
【单选题】お電話ください。 换成更为尊敬的说法是?
【判断题】Under US copyright law,legal protection attaches only to fixed representations in a tangible medium.
【单选题】分析以下代码: class Circle { private double radius; public Circle(double radius) { radius = radius; } }
A.
该程序有一个编译错误,因为它没有main方法。
B.
该程序将正常编译,但是您无法创建具有指定半径的Circle对象。该对象将始终具有半径0。
C.
该程序有一个编译错误,因为您不能为radius指定半径。
D.
该程序无法编译,因为Circle没有默认的构造函数。