写出下列程序的运行结果
public class Ex4{
public static void main(String []args){
int[]array=new int[2];
for(int i=-1;i
try{
array[i]=i;
System.out.println("没有引发异常");
}catch(Exception e){
System.out.println("引发异常");
}finally{
System.out.println("运行finally语句块");
}
}
}
}
试简述类成员访问权限修饰符有哪几种?它们之间的区别是什么?
写出下列程序的运行结果
class Animal{
public void Speak(){
System.out.println("Animal speak ...");
}
}
class Dog extends Animal{
public void Speak(){
System.out.println("Bowwow ...");
}
}
class Cat extends Animal{
public void Speak(){
System.out.println("Meow ...");
}
}
public class Ex3{
public static void MakeSpeak(Animal an){
an.Speak();
}
public static void main(String []args){
Cat c=new Cat();
Dog d=new Dog();
MakeSpeak(c);
MakeSpeak(d);
}
}
写出下列程序的运行结果
class Ex2{
public static void main(String []args){
for(int i=0;i<10;++i){
if(i%2==0) continue;
System.out.print(i+" ");
}
System.out.println();
}
}
写出下列程序的运行结果
class A{public int I;
}
class Ex1{
public static void main(String []args){
A a1=new A();
A a2=new A();
a1.I=1;
a2.I=1;
System.out.println(a1==a2);
a1=a2;
a1.I=5;
System.out.println("a2.I="+a2.I);
System.out.println(a1!=a2);
}
}
包含Swing构件的Applet(小应用程序)应该是类的子类。
设x=4.7,a=7,y=2.5,算术表达式x+a%3*(int)(x+y)%2/4的值为:。
在Java中,所有类都是类的子类。
C程序设计课程试卷A 有答案 更新日期: 2016-04-13 | |
计算机绘图试题及答案A.rar 更新日期: 2018-09-26 | |
数字逻辑试题B及答案 更新日期: 2018-09-09 | |
数字逻辑试题A及答案 更新日期: 2018-09-09 | |
计算机网络信管试题A及答案 更新日期: 2018-09-09 | |
计算机网络电商试卷A及答案 更新日期: 2018-09-09 | |
《计算方法》考试卷试题B 更新日期: 2018-07-15 | |
XML理论期末考试试卷(A) 更新日期: 2018-07-10 |