Athrow MyException
Bthrows MyException
Cthrow new MyException()
Dthrows new MyException()
有下列语句: struct Birthday{public int year; public int month; public int day;}; struct Student{ int no; string name; int age; public Birthday bir; }; …… Student Stu; 如果要把Stu的出生年份赋值为1988,正确的语句是()
单选题查看答案
在一个合法的Java源程序文件中定义了3个类,其中属性为public的类可能有()个。
单选题查看答案
对于下列代码: 1) class Person { 2} public void printValue(int i, int j) {//... } 3} public void printValue(int i){//... } 4} } 5) public class Teacher extends Person { 6} public void printValue( ) {//... } 7} public void printValue(int i) {//...} 8} public static void main(String args[]){ 9} Person t = new Teacher( ); 10} t.printValue(10); 11} } 第10行语句将调用哪行语句?()
单选题查看答案
Java程序中,一个源文件中只能有多个非public接口定义。
判断题查看答案
以下程序的输出结果是() using System; class Program { public static void Main(string[] args) { int a=5,b=4,c=6,d; Console.WriteLine(“{0}”,d=a>b?(a>c?a:c):b); } }
单选题查看答案
编写实现下列有符号除法运算的程序段。程序执行后,商数和余数各为多少? (1)4003H÷4 (2)-4003H÷4
简答题查看答案
某一变量要求在程序各模块中均可使用,应在()中用Public声明该变量。
单选题查看答案
在程序中不需要用PUBLIC等命令明确声明和建立,可直接使用的内存变量是()。
单选题查看答案
有以下的程序: 上述代码运行后,将在控制台窗口输出()。
单选题查看答案