JAVA程序代码例题 java编程例题

求java习题?1.给定一个Java程序代码JAVA程序代码例题,如下JAVA程序代码例题:运行编译后,输出结果是().(选择一项)
pubilc class Test{
int count = 9;
pubilc void count1(){
int count = 10;
SYstem.out.println("count1"+count);
}
pubilc void count2(){
SYstem.out.println("count2"+count);
}
pubilc static void main(String args[]){
【JAVA程序代码例题 java编程例题】 Test t =new Twst();
t.count1();
t.count2();
}
}
A.count1=9 count2=9
B.count1=10 count2=9
C.count1=10 count2=10
D.count1=9 count2=10
2.给定java代码 , 如下:运行时,会产生()类型JAVA程序代码例题的异常.(选择一项)
String s=null;
s.concat("abc");
A.AritthmeticException
B.NullpointerException
C.IOException
D.EOFException
3.给定java代码片段,如下:
Integer a = new Integer(3);
Integer b = new Integer(3);
System.out.println(a==b);
运行后,这段代码将输出() 。(选择一项)
A.true
B.false //对象比较用EQUALS
C.0
D.1
4.在JAVA中的布局管理器 , 以下说法中错误的是().(选择一项)
A.FlowLayout以由上到下的方式从左到右排列组件
B.BorderLayout使用 "东"."西"."南"."北","居中"来指定组件的位置
C.GridLayout可以创建网格布局,网格布局中各组的大小可以任意调整
D.可以通过容器的setLayout方法为容器指定布局管理
5.在J2EE中,下列元素经过排序的集合类是() 。(选择一项)
A.LinkedList
B.Stack
C.Hashtable
D.TreeSet
6.在Java中,要想使定义该类所在的包外的类不能访问这个类应用的关键字是() 。(选择一项)
A.不需要任何关键字
B.private
C.final
D.protected
7.某一 java程序中有如下代码:
Datalnputstream din=new DataInputstream(new BufferedInputstream
(new FileInputstream(“employee.dat”) ));
假设在employee.dat文件中只有如下一段字符:abcdefg 。则:System.out.println(din)在屏幕上打?。ǎㄑ≡褚幌睿?
A.A
B.B
C.97
D.98
8.()位于集合框架的体系结构的顶层 。(选择一项)
A.ArrayList类
B.Collection接口
C.Set接口
D.List接口
9.Java程序中读入用户输入的一个值,要求创建一个自定义的异常,如果输入值大于10,使用throw语句显式地引发异常 , 异常输出信息为“something’s wrongJAVA程序代码例题!”,语句为() 。(选择一项)
A.if (I10)throw Exception(“something’s wrong!”);
B.if (I10)throw Exception e (“something’s wrong!”);
C.if (I10)throw new Exception(“something’s wrong!”);
D.if (I10) throw new Exception e (“something’s wrong!”);
11.下面是Java程序中的一些声明,选项中能够通过编译的一项是() 。(选择一项)
String s1=new String(“Hello”);
String s2=new String(“there”);
String s3=new String();
A.s3=s1+s2
B.s3=s1s2
C.s3=s1||s2
D.s3=s1s2
java例题代码import java.io.BufferedReader;
import java.io.InputStreamReader;
public class Demo {
public static void main(String[] args) throws Exception {
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
System.out.print("请输入密码:");
try{
String pass = in.readLine();
if(pass.length()6 || pass.length()4){
System.err.println("长度错误,密码长度必须是4-6位");
return;
}
int password = Integer.parseInt(pass);
System.out.println("信息合法");
}catch(Exception e){
System.err.println("错误,输入的密码必须为数字");

推荐阅读