首页 > 文库大全 > 精品范文库 > 5号文库

模拟售票系统java编程[五篇模版]

模拟售票系统java编程[五篇模版]



第一篇:模拟售票系统java编程

/* 项目:用多线程设计一个模拟火车站售票大厅的工作情形。

问题描述:火车站有许多售票窗口,有些开放,有些不开放。顾客进入火车站售票厅后,到某个售票窗口排队等候,排到了就办理业务,然后离去。如图2.1所示。*/ /* *共有五个类:

*SimulateRailwayStation:具体运行主类; *RailwayStation:火车站售票大厅类 *Agent类:代表火车站售票窗口类; *Customer类:顾客类; *List类:存储类 */

import java.util.Date;import java.awt.*;import java.awt.event.*;public class SimulateRailwayStation extends Frame implements ActionListener { //预设火车站售票大厅有10个售票窗口

protected static final int NUM_AGANTS=10;//预设目前正在售票的窗口为6个

protected static final int NUM_INITIAL_AGANTS=6;//设置每个窗口办理售票业务的时间

protected static final int BUSINESS_DELAY=6000;//设置有10辆火车的座位可以出售

protected static final int MAX_TRAIN_NUM=10;//设置每个窗口从一个顾客完成到下一个顾客开始的时间间隔 protected static final int MAX_NO_CUSTOMERS=200;//定义按钮,手动添加顾客。

private Button addcus=new Button(“添加顾客”);//定义按钮,模拟顾客自己离开

private Button delcus=new Button(“顾客离去”);//定义按钮,增加售票窗口

private Button addagent=new Button(“增加售票窗口”);//定义按钮,关闭售票窗口

private Button delagent=new Button(“关闭售票窗口”);//10辆火车班次的信息

protected static String[] train_num={“南京->北京,46次”,“南京->上海,34次”,“南京->福州,231次”,“南京->杭州,65次”,“南京->武汉,112次”,“南京->成都,77次”,“南京->天津,21次”,“南京->徐州,134次”,“南京->乌鲁目齐,335次”,“南京->合肥,456次”};//与上面的信息对应的每辆火车的票务信息

protected static int[] tickets={50,70,50,50,50,120,60,100,50,50};//实例化火车站售票大厅类

private RailwayStation railwaystation=new RailwayStation();

//建立窗体适配器,能关闭窗口

private class WindowCloser extends WindowAdapter { public void windowClosing(WindowEvent we){ railwaystation.stop();System.exit(0);} }

//构造方法,完成界面初始化 public SimulateRailwayStation(){ super(“Simulation RailwayStation”);//设置面板

Panel buttons=new Panel();buttons.setLayout(new FlowLayout());//在面板中添加按钮 buttons.add(addcus);buttons.add(delcus);buttons.add(addagent);buttons.add(delagent);//对按钮设置监听

addcus.addActionListener(this);delcus.addActionListener(this);addagent.addActionListener(this);delagent.addActionListener(this);//对窗体适配器设置监听

addWindowListener(new WindowCloser());setLayout(new BorderLayout());add(“North”,railwaystation);add(“South”,buttons);setSize(500,200);validate();pack();show();//调用火车站售票大厅类的start()方法,开始售票工作 railwaystation.start();}

public void actionPerformed(ActionEvent ae){ if(ae.getSource()==addcus){ //新增顾客

railwaystation.generateCustomer();} else if(ae.getSource()==delcus){ } else if(ae.getSource()==addagent){ //增加售票窗口

railwaystation.addAgent();} else if(ae.getSource()==delagent){ //关闭服务窗口

railwaystation.retireAgent();} }

public static void main(String[] args){ SimulateRailwayStation smlt=new SimulateRailwayStation();} }

/* 火车站售票大厅类 */ class RailwayStation extends Panel implements Runnable { //定义售票窗口数组Agent[] protected Agent[] agent=new Agent[SimulateRailwayStation.NUM_AGANTS];protected Label[] labelAgent=new Label[SimulateRailwayStation.NUM_AGANTS];protected Label labelQueue=new Label(“正在等待的顾客数:0”);protected Label labelServed=new Label(“已经服务的顾客数:0”);//定义可以进行售票服务的窗口

protected int numAgents=SimulateRailwayStation.NUM_INITIAL_AGANTS;//定义存放已服务过的顾客数

public static int numCustomerServered=0;private Thread thread=null;public RailwayStation(){ setup(“各窗口实时状态显示:”);}

//显示各售票窗口的实时工作状态 private void setup(String title){ //定义售票窗口的工作状态面板 Panel agentPanel=new Panel();agentPanel.setLayout(new GridLayout(SimulateRailwayStation.NUM_AGANTS,1));//各售票窗口的工作状态

for(int i=0;i

agent[i]=new Agent(i);//售票窗口开始售票服务 agent[i].start();} else { labelAgent[i]=new Label(“窗口”+(i+1)+“:暂停服务!”);agentPanel.add(labelAgent[i]);} } //定义顾客候票情况面板

Panel otherPanel=new Panel();otherPanel.setLayout(new GridLayout(2,1));otherPanel.add(labelQueue);otherPanel.add(labelServed);setLayout(new BorderLayout());//显示各售票窗口的工作状态安排在下部 add(“South”,agentPanel);//显示顾客候票状况安排在中部 add(“Center”,otherPanel);//显示调用本方法 setup()的参数安排在上部 add(“North”,new Label(title));} //开始工作 public void start(){ if(thread==null){ thread =new Thread(this);//启动线程

thread.start();} }

//线程,调用显示实时售票状况的updateDisplay()方法 public void run(){ while(true){ this.updateDisplay();} }

//实时处理售票的状况

public void updateDisplay(){ //定义在本窗口等候的顾客数 int totalSize=0;//对可以服务的窗口进行循环 for(int i=0;i

totalSize+=agent[i].getCusCountOfQueue();String s=“窗口”+(i+1)+“:正在办理顾客”+agent[i].getCIdOfHandling()+“业务”;//显示在本窗口等候的顾客数

if(agent[i].getCusCountOfQueue()>0)labelAgent[i].setText(s+“[”+agent[i].getCusOfQueue()+“正在等待]”);else labelAgent[i].setText(s);} else { labelAgent[i].setText(“窗口”+(i+1)+“:空闲中...”);} } for(int i=numAgents;i

//火车站售票窗口关闭 public void stop(){ thread=null;for(int i=0;i

public void addAgent(){ if(numAgents

//关闭窗口,该方法暂时没有使用 public void retireAgent(){ if(numAgents>1){ agent[numAgents-1].halt();numAgents--;} }

//接待顾客的方法

public void generateCustomer(){ //所有工作窗口的队列中,至少有一个顾客在排队时为真.boolean allAgentQueueHasOne=true;/* 如果所有正在工作窗口的队列中至少有一个顾客在排队, 就把新顾客添加到队列最少的那个队.否则,就把顾客添加到没有业务处理的窗口中.*/ //对可以服务的窗口进行循环 for(int i=0;i

if(agent[i].getCusCountOfQueue()==0 && agent[i].getCIdOfHandling()==0){ //添加新顾客

agent[i].joinNewCustomer(new Customer());allAgentQueueHasOne=false;break;} } //如果所有工作窗口都有顾客在等候 if(allAgentQueueHasOne){ //定义变量index存放最少等候顾客数的窗口编号 int index=0;//对可以服务的窗口进行循环 for(int i=0;iagent[index].joinNewCustomer(new Customer());} }

}

/*火车站售票窗口类 */ class Agent extends Panel implements Runnable { //窗口开放标志

private boolean running =false;private int ID=-1;private int numCustomers=0;private int handlingCId=0;//该窗口中排队的顾客

private List customersofqueue=new List();//该窗口中已办理的顾客

private List customersofhandled=new List();private Label labelHandling=new Label();private Label labelThisQueue=new Label();private Thread thread=null;

//构造方法,定义售票窗口编号 public Agent(int ID){(见教材)}

// 售票窗口开始售票服务 public void start(){ if(thread==null){ running=true;thread =new Thread(this);//启动线程 thread.start();} }

//停止售票服务 public void halt(){ running=false;}

//获得正在办理业务的顾客ID public int getCIdOfHandling(){ return handlingCId;}

//从本窗口的队列中获得将要服务的顾客

public Customer requestCustomerFor(){ if(customersofqueue.getSize()>0){ Customer c=(Customer)customersofqueue.get(0);customersofqueue.delete(0);return c;} else { return null;} }

//本窗口已办理业务的顾客数

public int getCusCountOfHandled(){ return numCustomers;}

//本窗口已办理业务的顾客列表 public String getCusOfHandled(){ if(customersofhandled.getSize()>0){ StringBuffer sbuf=new StringBuffer();sbuf.append(“顾客”);for(int i=0;i

//在窗口的队列中添加新顾客

public synchronized void joinNewCustomer(Customer c){ if(!customersofqueue.isFull()){ customersofqueue.add(c);System.out.println(”join to agent“+(this.ID+1));} }

//获得本窗口的队列中的顾客列表

public synchronized String getCusOfQueue(){ if(customersofqueue.getSize()>0){ StringBuffer sbuf=new StringBuffer();sbuf.append(”Customer“);for(int i=0;i

//获得本窗口的队列中的顾客数 public int getCusCountOfQueue(){ return customersofqueue.getSize();}

//本窗口队列中的顾客未办理业务离去 public void CustomerLeft(){ if(customersofqueue.getSize()>0)customersofqueue.delete(customersofqueue.getSize()-1);}

//顾客办理完业务离去

public void releaseCustomer(Customer c){ numCustomers++;customersofhandled.add(c);} //本窗口在不断的处理业务 public void run(){ while(running){ try {

thread.sleep((int)(Math.random()*SimulateRailwayStation.MAX_NO_CUSTOMERS)+1000);Customer customer=requestCustomerFor();//获得服务的顾客 if(customer!=null){ handlingCId=customer.getCustomerId();//获得顾客ID //办理业务时间:主要是询问等

thread.sleep((int)(Math.random()*SimulateRailwayStation.BUSINESS_DELAY)/2);synchronized(this){ //检索对应的票务信息

for(int i=0;i

thread.sleep((int)(Math.random()*SimulateRailwayStation.BUSINESS_DELAY)/2);releaseCustomer(customer);//顾客办理后离开。

RailwayStation.numCustomerServered+=1;//服务顾客数+1 } else { handlingCId=0;} } catch(InterruptedException ie){ System.out.println(”Teller Exception: “+ie);} } } }

/*顾客类*/ class Customer { //顾客开始排队的时间

private Date created;//顾客ID,每个顾客都有唯一的ID,不能重复 private static int cId;//顾客购买票务的意愿,比如去哪里,班次等.private int customerwilling=0;

public Customer(){ //顾客进入车站时就已经想好了买什么票,并且是火车站能够提供的.customerwilling=(int)(Math.random()*10+1);created=new Date();++cId;System.out.print(”new Customer“+cId+”,");}

//获得顾客ID public int getCustomerId(){ return cId;}

//获得顾客买票意愿

public int getCustomerWilling(){ return customerwilling;}

//获得顾客从进入火车站到离开窗口的时间 public long getWaitTime(Date now){ return now.getTime()-created.getTime();} }

/*构造一个队列容器,每个服务的窗口都有一个, 顾客总是先进入这个队列容器后,再进行窗口的业务处理.*/ class List { //定义队列最大容量:100人 private int maxItems=100;private int numItems=0;private int ID=-1;private Object[] list=null;

public List(){ list=new Object[maxItems];}

public List(int maxItems){ this.maxItems=maxItems;list=new Object[this.maxItems];}

//在队列中增加顾客

public void add(Object obj){ list[numItems++]=obj;}

//在有人离开队列

public void delete(int pos){ for(int i=pos+1;i

//得到队列中指定的人

public Object get(int pos){ return list[pos];}

//队列中的人数

public int getSize(){ return numItems;}

//队列是否满了(超过100人)public boolean isFull(){ return(numItems>=maxItems);} }

第二篇:基于java航空售票系统(范文)

public FlightBook()

//构造函数

{

super(“航空订票”);this.setSize(600,400);this.setLocation(300,240);this.setResizable(false);this.setVisible(true);this.setLayout(new BorderLayout());JPanel panel=new JPanel(new GridLayout(11,1));this.add(panel,BorderLayout.WEST);this.setBackground(Color.blue);

button_ask=new JButton(“查询”);panel.add(button_ask);button_ask.addActionListener(this);

button_book=new JButton(“订票”);panel.add(button_book);button_book.addActionListener(this);

button_cancel=new JButton(“退票”);panel.add(button_cancel);button_cancel.addActionListener(this);

text_user=new JTextArea();this.add(text_user,BorderLayout.CENTER);

frame_cx=new JFrame(“输入”);

//查询输入框

frame_cx.setSize(280,120);frame_cx.setResizable(false);frame_cx.setBackground(Color.LIGHT_GRAY);frame_cx.setLayout(new FlowLayout());frame_cx.add(new JLabel(“终点站:”));text_field1=new JTextField(20);frame_cx.add(text_field1);button_ok1=new JButton(“ok”);frame_cx.add(button_ok1);button_ok1.addActionListener(this);frame_cx.addWindowListener(this);

frame_dp=new JFrame(“输入”);

//订票输入框

frame_dp.setSize(350,150);frame_dp.setResizable(false);frame_dp.setBackground(Color.LIGHT_GRAY);frame_dp.setLayout(new FlowLayout());frame_dp.add(new JLabel(“ 航班号:”));text_field2=new JTextField(20);frame_dp.add(text_field2);frame_dp.add(new JLabel(“ 订票数:”));text_field3=new JTextField(20);frame_dp.add(text_field3);button_ok2=new JButton(“确定”);frame_dp.add(button_ok2);

button_ok2.addActionListener(this);frame_dp.addWindowListener(this);

frame_tp=new JFrame(“输入”);

//退票输入框

frame_tp.setSize(350,150);frame_tp.setResizable(false);frame_tp.setBackground(Color.LIGHT_GRAY);frame_tp.setLayout(new FlowLayout());frame_tp.add(new JLabel(“ 日期 :”));text_field4=new JTextField(20);frame_tp.add(text_field4);frame_tp.add(new JLabel(“ 航班号:”));text_field5=new JTextField(20);frame_tp.add(text_field5);button_ok3=new JButton(“正确”);frame_tp.add(button_ok3);button_ok3.addActionListener(this);frame_tp.addWindowListener(this);

dialog_cx=new JDialog(this,“提示”,true);

//提示查询输入航线未开通错误

dialog_cx.setSize(240,80);label=new JLabel(“此站点未开通航线,请重新输入!”);dialog_cx.add(label);dialog_cx.setLayout(new FlowLayout(FlowLayout.CENTER));

dialog_cx.addWindowListener(this);

frame_dpsx=new JFrame(“订票手续”);

//订票手续

frame_dpsx.setSize(250,200);frame_dpsx.setResizable(false);frame_dpsx.setBackground(Color.LIGHT_GRAY);frame_dpsx.setLayout(new FlowLayout(FlowLayout.CENTER));frame_dpsx.add(new JLabel(“ 姓名 :”));text_fielddp_name=new JTextField(10);frame_dpsx.add(text_fielddp_name);frame_dpsx.add(new JLabel(“ 航班号 :”));text_fielddp_hbh=new JTextField(10);frame_dpsx.add(text_fielddp_hbh);frame_dpsx.add(new JLabel(“ 订票数 :”));text_fielddp_number=new JTextField(10);frame_dpsx.add(text_fielddp_number);frame_dpsx.add(new JLabel(“联系方式 :”));text_fielddp_lxfs=new JTextField(10);frame_dpsx.add(text_fielddp_lxfs);button_tj=new JButton(“提交”);frame_dpsx.add(button_tj);button_tj.addActionListener(this);

frame_djsx=new JFrame(“登记手续”);

//登记手续

frame_djsx.setSize(250,200);frame_djsx.setResizable(false);

frame_djsx.setBackground(Color.LIGHT_GRAY);frame_djsx.setLayout(new FlowLayout(FlowLayout.CENTER));frame_djsx.add(new JLabel(“ 姓名 :”));text_fielddj_name=new JTextField(10);frame_djsx.add(text_fielddj_name);frame_djsx.add(new JLabel(“ 航班号 :”));text_fielddj_hbh=new JTextField(10);frame_djsx.add(text_fielddj_hbh);frame_djsx.add(new JLabel(“ 订票数 :”));text_fielddj_number=new JTextField(10);frame_djsx.add(text_fielddj_number);frame_djsx.add(new JLabel(“联系方式 :”));text_fielddj_lxfs=new JTextField(10);frame_djsx.add(text_fielddj_lxfs);button_wc=new JButton(“完成”);frame_djsx.add(button_wc);button_wc.addActionListener(this);

frame_tpsx=new JFrame(“退票手续”);

//退票手续

frame_tpsx.setSize(250,200);frame_tpsx.setResizable(false);frame_tpsx.setBackground(Color.LIGHT_GRAY);frame_tpsx.setLayout(new FlowLayout(FlowLayout.CENTER));frame_tpsx.add(new JLabel(“ 姓名 :”));text_fieldtp_name=new JTextField(10);frame_tpsx.add(text_fieldtp_name);frame_tpsx.add(new JLabel(“ 航班号 :”));

text_fieldtp_hbh=new JTextField(10);frame_tpsx.add(text_fieldtp_hbh);frame_tpsx.add(new JLabel(“ 退票数 :”));text_fieldtp_number=new JTextField(10);frame_tpsx.add(text_fieldtp_number);frame_tpsx.add(new JLabel(“联系方式 :”));text_fieldtp_lxfs=new JTextField(10);frame_tpsx.add(text_fieldtp_lxfs);button_cg=new JButton(“成功”);frame_tpsx.add(button_cg);button_cg.addActionListener(this);

dialog_dpwk=new JDialog(this,“提示”,true);

//提示订票输入未开通航线错误

dialog_dpwk.setSize(350,80);label=new JLabel(“此站点未开通航线,请查询后重新输入!”);dialog_dpwk.add(label);dialog_dpwk.setLayout(new FlowLayout(FlowLayout.CENTER));dialog_dpwk.addWindowListener(this);

dialog_dpyk=new JDialog(this,“提示”,true);

//提示订票输入票额不足错误

dialog_dpyk.setSize(350,150);label1=new JLabel(“此站点已满员或余票不足,请查询后重新输入!”);dialog_dpyk.add(label1);

错误

} label2=new JLabel(“ 若需要,可登记排队候补”);dialog_dpyk.add(label2);button_sq=new JButton(“登记”);button_sq.addActionListener(this);dialog_dpyk.add(button_sq);dialog_dpyk.setLayout(new FlowLayout(FlowLayout.CENTER));dialog_dpyk.addWindowListener(this);

dialog_tpts=new JDialog(this,“提示”,true);

//提示退票输入日期和航班号矛盾dialog_tpts.setSize(350,80);label=new JLabel(“您输入的日期无此航班号,请查询后重新输入!”);dialog_tpts.add(label);dialog_tpts.setLayout(new FlowLayout(FlowLayout.CENTER));dialog_tpts.addWindowListener(this);

d=new JDialog(this,“提示”,true);

//当退票满足客户,提示联系该客户

d.setSize(350,150);d.setLayout(new FlowLayout(FlowLayout.CENTER));d.addWindowListener(this);

this.addWindowListener(this);this.setVisible(true);4.1.2 软件的查询、订票和退票模块

查询截图:

查询成功截图:

订票截图:

退票截图:

public void actionPerformed(ActionEvent e){ String s=e.getActionCommand();if(s==“查询”){ frame_cx.setLocation(this.getX()+100,this.getY()+100);frame_cx.setVisible(true);}

if(s==“订票”){ frame_dp.setLocation(this.getX()+100,this.getY()+100);frame_dp.setVisible(true);}

if(s==“退票”){ frame_tp.setLocation(this.getX()+100,this.getY()+100);frame_tp.setVisible(true);}

if(s==“ok”){ if(text_field1.getText().toString().trim().equals(“北京”)){ text_user.append(“地点:”+F_name[0]+“ 航班号:”+H_number[0]+“ 飞机号:”+F_number[0]+“ 时间:”+time[0]+“ ”+Price[0]+“ 余票量:”+Count[0]+“n”);

价格:

} else if(text_field1.getText().toString().trim().equals(“香港”)){ text_user.append(“地点:”+F_name[1]+“ 航班号:”+H_number[1]+“ 飞机号:”+F_number[1]+“ 时间:”+time[1]+“ 价格:”+Price[1]+“ 余票量:”+Count[1]+“n”);} else if(text_field1.getText().toString().trim().equals(“澳门”)){ text_user.append(“地点:”+F_name[2]+“ 航班号:”+H_number[2]+“ 飞机号:”+F_number[2]+“ 时间:”+time[2]+“ ”+Price[2]+“ 余票量:”+Count[2]+“n”);} else if(text_field1.getText().toString().trim().equals(“纽约”)){ text_user.append(“地点:”+F_name[3]+“ 航班号:”+H_number[3]+“ 飞机号:”+F_number[3]+“ 时间:”+time[3]+“ ”+Price[3]+“ 余票量:”+Count[3]+“n”);} else if(text_field1.getText().toString().trim().equals(“悉尼”)){ text_user.append(“地点:”+F_name[4]+“ 航班号:”+H_number[4]+“ 飞机号:”+F_number[4]+“ 时间:”+time[4]+“ ”+Price[4]+“ 余票量:”+Count[4]+“n”);} else {

dialog_cx.setLocation(this.getX()+100,this.getY()+100);

dialog_cx.setVisible(true);}

价格:价格:价格: } frame_cx.setVisible(false);if(s==“确定”){

String Hnumber=text_field2.getText().toString().trim();int Dcount=Integer.parseInt(text_field3.getText().toString().trim());if(Hnumber.equals(“CAC”)||Hnumber.equals(“cac”)){

if(Dcount<=Count[0]){ Count[0]-=Dcount;

frame_dpsx.setLocation(this.getX()+100,this.getY()+100);frame_dpsx.setVisible(true);

} else { dialog_dpyk.setLocation(this.getX()+100,this.getY()+100);dialog_dpyk.setVisible(true);

} else if(Hnumber.equals(“CFC”)||Hnumber.equals(“cfc”)&&Dcount<=Count[1]){

if(Dcount<=Count[1]){ Count[0]-=Dcount;}

frame_dpsx.setLocation(this.getX()+100,this.getY()+100);frame_dpsx.setVisible(true);

} else { dialog_dpyk.setLocation(this.getX()+100,this.getY()+100);dialog_dpyk.setVisible(true);} } else if(Hnumber.equals(“CDA”)||Hnumber.equals(“cda”)&&Dcount<=Count[2])

{

if(Dcount<=Count[2]){ Count[0]-=Dcount;

frame_dpsx.setLocation(this.getX()+100,this.getY()+100);frame_dpsx.setVisible(true);

} else { dialog_dpyk.setLocation(this.getX()+100,this.getY()+100);dialog_dpyk.setVisible(true);} } else if(Hnumber.equals(“CCX”)||Hnumber.equals(“ccx”)&&Dcount<=Count[3])

{

if(Dcount<=Count[3]){ Count[0]-=Dcount;

frame_dpsx.setLocation(this.getX()+100,this.getY()+100);frame_dpsx.setVisible(true);

} else { dialog_dpyk.setLocation(this.getX()+100,this.getY()+100);dialog_dpyk.setVisible(true);} } else if(Hnumber.equals(“MCM”)||Hnumber.equals(“mcm”)&&Dcount<=Count[4])

{

if(Dcount<=Count[4]){ Count[0]-=Dcount;

frame_dpsx.setLocation(this.getX()+100,this.getY()+100);frame_dpsx.setVisible(true);

} else { dialog_dpyk.setLocation(this.getX()+100,this.getY()+100);dialog_dpyk.setVisible(true);

}

if(e.getActionCommand()==“提交”){ frame_dpsx.setVisible(false);else {

} frame_dp.setVisible(false);dialog_dpwk.setLocation(this.getX()+100,this.getY()+100);dialog_dpwk.setVisible(true);} } }

if(e.getActionCommand()==“登记”){ dialog_dpyk.setVisible(false);frame_djsx.setLocation(this.getX()+100,this.getY()+100);frame_djsx.setVisible(true);}

if(e.getActionCommand()==“完成”){ int Wait_number=Integer.parseInt(text_fielddj_number.getText().toString().trim());Wait_name[Wait_i]=text_fielddj_name.getText().toString().trim();Wait_hbh[Wait_i]=text_fielddj_hbh.getText().toString().trim();Wait_count[Wait_i]=Wait_number;Wait_xl[Wait_i]=Wait_i;Wait_lxfs[Wait_i]=text_fielddj_lxfs.getText().toString().trim();frame_djsx.setVisible(false);text_user.append(“登记姓名 :”+Wait_name[Wait_i]+“ 登记航班号 :”+Wait_hbh[Wait_i]+“ 登记订票数量 :”+Wait_count[Wait_i]+“ 联系方式 ”+Wait_lxfs[Wait_i]+“n”);Wait_i++;}

if(e.getActionCommand()==“正确”){ String a=text_field4.getText().toString().trim();String b=text_field5.getText().toString().trim();if(a.equals(“周三

:”)&&b.equals(“cfc”)||b.equals(“CFC”)||b.equals(“ccx”)||b.equals(“CCX”)){

} else if(a.equals(“周日

”)&&b.equals(“cda”)||b.equals(“CDA”)||b.equals(“mcm”)||b.equals(“MCM”)){ frame_tpsx.setLocation(this.getX()+100,this.getY()+100);frame_tpsx.setLocation(this.getX()+100,this.getY()+100);frame_tpsx.setVisible(true);frame_tpsx.setVisible(true);} else if(a.equals(“周五”)&&b.equals(“cac”)||b.equals(“CAC”)){ frame_tpsx.setLocation(this.getX()+100,this.getY()+100);frame_tpsx.setVisible(true);} else { dialog_tpts.setLocation(this.getX()+100,this.getY()+100);dialog_tpts.setVisible(true);}

frame_tp.setVisible(false);

}

if(e.getActionCommand()==“成功”){

int i=0;int j=0;String c=text_fieldtp_hbh.getText().toString().trim();int Numb=Integer.parseInt(text_fieldtp_number.getText().toString().trim());frame_tpsx.setVisible(false);if(c.equals(“cac”)||c.equals(“CAC”)){

Count[0]+=Numb;

if(Wait_i>0){

for(i=0;i

if(Wait_hbh[i].equals(“cac”)||Wait_hbh[i].equals(“CAC”)&&Wait_count[i]<=Count[0])

{

j=i+1;

label=new JLabel(j+“号客户:

”+Wait_name[i]+“ 满足订票要求,联系方式是:”+Wait_lxfs[i]);d.add(label);d.setLocation(this.getX()+100,this.getY()+100);d.setVisible(true);} }

}

} else if(c.equals(“cfc”)||c.equals(“CFC”)){ Count[1]+=Numb;if(Wait_i>0){

for(i=0;i

if(Wait_hbh[i].equals(“cfc”)||Wait_hbh[i].equals(“CFC”)&&Wait_count[i]<=Count[0])

{

j=i+1;

label=new JLabel(j+“号客户:

”+Wait_name[i]+“ 满足订票要求,联系方式是:”+Wait_lxfs[i]);d.add(label);d.setLocation(this.getX()+100,this.getY()+100);d.setVisible(true);} }

}

} else if(c.equals(“cda”)||c.equals(“CDA”)){ Count[2]+=Numb;if(Wait_i>0){

for(i=0;i

if(Wait_hbh[i].equals(“cda”)||Wait_hbh[i].equals(“CDA”)&&Wait_count[i]<=Count[0])

{

j=i+1;

label=new JLabel(j+“号客户:

”+Wait_name[i]+“ 满足订票要求,联系方式是:”+Wait_lxfs[i]);d.add(label);d.setLocation(this.getX()+100,this.getY()+100);d.setVisible(true);} }

}

} else if(c.equals(“ccx”)||c.equals(“CCX”)){ Count[3]+=Numb;if(Wait_i>0){

for(i=0;i

if(Wait_hbh[i].equals(“ccx”)||Wait_hbh[i].equals(“CCX”)&&Wait_count[i]<=Count[0])

{

j=i+1;

label=new JLabel(j+“号客户:

”+Wait_name[i]+“ 满足订票要求,联系方式是:”+Wait_lxfs[i]);d.add(label);d.setLocation(this.getX()+100,this.getY()+100);d.setVisible(true);} }

}

} else if(c.equals(“mcm”)||c.equals(“MCM”)){ Count[4]+=Numb;if(Wait_i>0){

for(i=0;i

if(Wait_hbh[i].equals(“mcm”)||Wait_hbh[i].equals(“MCM”)&&Wait_count[i]<=Count[0])

{

j=i+1;

label=new JLabel(j+“号客户:

”+Wait_name[i]+“ 满足订票要求,联系方式是:”+Wait_lxfs[i]);d.add(label);d.setLocation(this.getX()+100,this.getY()+100);d.setVisible(true);} }

} } } }

第三篇:Java编程

《Java编程》

计算器

班级:****** 姓名:******

学号: ******* 指导老师:******

实验名称:JAVA计算器

1实验目的: Java编程语言在编程方面的具体应用,以及使用面向对象方法,对小应用程序进行需求分

析、概要设计、详细设计,最后使用Java编程实现的全过程。

2实验意义:

在编程我们使用的java语言,是目前比较流行的编程语言。在当今这个时代,java语言在编程方面的优势使得编程有了更好的选择。Java语言最大的特点是具有跨平台性,使其不受平台不同的影响,得到了广泛的应用。实训性质

本课程是计算机信息管理专业的一门实践性课程,是《Java编程》课程的实践性教学环节。实训目标

⑴综合应用JAVA程序设计的知识解决实际问题。

⑵学会在应用程序的设计过程中,应用面向对象的程序设计方法。⑶学会应用JDBC创建数据库应用程序。

⑷学会开发基于Swing的应用程序及多文档应用程序的设计。实训任务

用Java语言开发工具(例如JDK、Jcreator、NetBeans等)制作一个简单的可运行的完整的应用程序或小型系统,并编制出各阶段必要的文档。

将创建一个计算器,可以进行常用的加减乘除算术运算。本实例的知识点有:窗口布局器Gridlayout的应用,对按钮消息的监听和响应。

6实训条件

<软件:>Windows XP,NetBeans IDE 6.52 7开发背景: Java是由Sun Microsystems公司于1995年5月推出的Java程序设计语言(以下简称Java语言)和Java平台的总称。Java语言是一个支持网络计算的面向对象程序设计语言。Java语言吸收了Smalltalk语言和C++语言的优点,并增加了其它特性,如支持并发程序设计、网络通信、和多媒体数据控制等。

8系统部分分析:

1)Java语言是简单的。Java语言的语法与C语言和C++语言很接近,使得大多数程序员很容易学习和使用Java。另一方面,Java丢弃了C++ 中很少使用的、很难理解的、令人迷惑的那些特性,如操作符重载、多继承、自动的强制类型转换。

2)Java语言是一个面向对象的。Java语言提供类、接口和继承等原语,为了简单起见,只支持类之间的单继承,但支持接口之间的多继承,并支持类与接口之间的实现机制(关键字为implements)。Java语言全面支持动态绑定,而C++ 语言只对虚函数使用动态绑定

3)Java语言是分布式的。Java语言支持Internet应用的开发,在基本的Java应用编程接口中有一个网络应用编程接口(java.net),它提供了用于网络应用编程的类库,包括URL、URLConnection、Socket、ServerSocket等。Java的RMI(远程方法激活)机制也是开发分布式应用的重要手段。

4)Java语言是健壮的。Java的强类型机制、异常处理、废料的自动收集等是Java程序健壮性的重要保证。对指针的丢弃是Java的明智选择。Java的安全检查机制使得Java更具健壮性。

5)Java语言是安全的。Java通常被用在网络环境中,为此,Java提供了一个安全机制以防恶意代码的攻击。除了Java语言具有的许多安全特性以外,Java对通过网络下载的类具有一个安全防范机制(类ClassLoader),如分配不同的名字空间以防替代本地的同名类、字节代码检查,并提供安全管理机制.6)Java语言是体系结构中立的。Java程序(后缀为java的文件)在Java平台上被编译为体系结构中立的字节码格式(后缀为class的文件), 然后可以在实现这个Java平台的任何系统中运行。

7)Java语言是可移植的。这种可移植性来源于体系结构中立性,另外,Java还严格规定了各个基本数据类型的长度。Java系统本身也具有很强的可移植性,Java编译器是用Java实现的.8)Java语言是解释型的。如前所述,Java程序在Java平台上被编译为字节码格式,然后可以在实现这个Java平台的任何系统中运行。

9)Java是高性能的。与那些解释型的高级脚本语言相比,Java的确是高性能的。事实上,Java的运行速度随着JIT(Just-In-Time)编译器技术的发展越来越接近于C++。

10)Java语言是多线程的。在Java语言中,线程是一种特殊的对象,它必须由Thread类或其子(孙)类来创建。

11)Java语言是动态的。Java语言的设计目标之一是适应于动态变化的环境。

目录

课程设计题目 ……………………………… p1

课程设计简介 ……………………………… p2

课程设计源代码…………………………… p5

课程设计运行结果 ……………………… p15 课程设计心得体会 ………………………

p16

package computerpad;import java.awt.*;import java.awt.event.*;import javax.swing.*;import javax.swing.border.*;import java.util.LinkedList;import java.text.NumberFormat;public class ComputerPad extends Frame implements ActionListener {

NumberButton numberButton[];

OperationButton oprationButton[];

Button 小数点按钮,正负号按钮,退格按钮,求倒数按钮,等号按钮,清零按钮;

Panel panel;

JTextField resultShow;

String 运算符号[]={“+”,“-”,“*”,“/”};

LinkedList 链表;

boolean 是否按下等号=false;

public ComputerPad()

{

super(“计算器”);

链表=new LinkedList();

numberButton=new NumberButton[10];

for(int i=0;i<=9;i++)

{

numberButton[i]=new NumberButton(i);

numberButton[i].addActionListener(this);

}

oprationButton=new OperationButton[4];

for(int i=0;i<4;i++)

{

oprationButton[i]=new OperationButton(运算符号[i]);

oprationButton[i].addActionListener(this);

}

小数点按钮=new Button(“.”);

正负号按钮

=new Button(“+/-”);

等号按钮=new Button(“=”);

求倒数按钮=new Button(“1/x”);

退格按钮=new Button(“退格”);

清零按钮=new Button(“C”);

清零按钮.setForeground(Color.red);

退格按钮.setForeground(Color.red);

等号按钮.setForeground(Color.red);

求倒数按钮.setForeground(Color.blue);

正负号按钮.setForeground(Color.blue);

小数点按钮.setForeground(Color.blue);

退格按钮.addActionListener(this);

清零按钮.addActionListener(this);

等号按钮.addActionListener(this);

小数点按钮.addActionListener(this);

正负号按钮.addActionListener(this);

求倒数按钮.addActionListener(this);

resultShow=new JTextField(10);

resultShow.setHorizontalAlignment(JTextField.RIGHT);

resultShow.setForeground(Color.blue);

resultShow.setFont(new Font(“TimesRoman”,Font.PLAIN,14));

resultShow.setBorder(new SoftBevelBorder(BevelBorder.LOWERED));

resultShow.setBackground(Color.white);

resultShow.setEditable(false);

panel=new Panel();

panel.setLayout(new GridLayout(4,5));

panel.add(numberButton[1]);

panel.add(numberButton[2]);

panel.add(numberButton[3]);

panel.add(oprationButton[0]);

panel.add(清零按钮);

panel.add(numberButton[4]);

panel.add(numberButton[5]);

panel.add(numberButton[6]);

panel.add(oprationButton[1]);

panel.add(退格按钮);

panel.add(numberButton[7]);

panel.add(numberButton[8]);

panel.add(numberButton[9]);

panel.add(oprationButton[2]);

panel.add(求倒数按钮);

panel.add(numberButton[0]);

panel.add(正负号按钮);

panel.add(小数点按钮);

panel.add(oprationButton[3]);

panel.add(等号按钮);

add(panel,BorderLayout.CENTER);

add(resultShow,BorderLayout.NORTH);

addWindowListener(new WindowAdapter()

{ public void windowClosing(WindowEvent e)

{

System.exit(0);

}

});

setVisible(true);

setBounds(100,50,240,180);

setResizable(false);

validate();

} public void actionPerformed(ActionEvent e)

{

if(e.getSource()instanceof NumberButton)

{

NumberButton b=(NumberButton)e.getSource();

if(链表.size()==0)

{

int number=b.getNumber();

链表.add(“"+number);

resultShow.setText(”“+number);

是否按下等号=false;

}

else if(链表.size()==1&&是否按下等号==false)

{

int number=b.getNumber();

String num=(String)链表.getFirst();

String s=num.concat(”“+number);

链表.set(0,s);

resultShow.setText(s);

}

else if(链表.size()==1&&是否按下等号==true)

{

int number=b.getNumber();

链表.removeFirst();

链表.add(”“+number);

是否按下等号=false;

resultShow.setText(”“+number);

}

else if(链表.size()==2)

{

int number=b.getNumber();

链表.add(”“+number);

resultShow.setText(”“+number);

}

else if(链表.size()==3)

{

int number=b.getNumber();

String num=(String)链表.getLast();

String s=num.concat(”“+number);

链表.set(2,s);

resultShow.setText(s);

}

}

else if(e.getSource()instanceof OperationButton)

{

OperationButton b=(OperationButton)e.getSource();

if(链表.size()==1)

{

String fuhao=b.get运算符号();

链表.add(fuhao);

}

else if(链表.size()==2)

{

String fuhao=b.get运算符号();

链表.set(1,fuhao);

}

else if(链表.size()==3)

{

String fuhao=b.get运算符号();

String number1=(String)链表.getFirst();

String number2=(String)链表.getLast();

String 运算符号=(String)链表.get(1);

try

{

double n1=Double.parseDouble(number1);

double n2=Double.parseDouble(number2);

double n=0;

if(运算符号.equals(”+“))

{

n=n1+n2;

}

else if(运算符号.equals(”-“))

{

n=n1-n2;

}

else if(运算符号.equals(”*“))

{

n=n1*n2;

}

else if(运算符号.equals(”/“))

{

n=n1/n2;

}

链表.clear();

链表.add(”“+n);

链表.add(fuhao);

resultShow.setText(”“+n);

}

catch(Exception ee)

{

}

}

}

else if(e.getSource()==等号按钮)

{

是否按下等号=true;

if(链表.size()==1||链表.size()==2)

{

String num=(String)链表.getFirst();

resultShow.setText(”“+num);

}

else if(链表.size()==3)

{

String number1=(String)链表.getFirst();

String number2=(String)链表.getLast();

String 运算符号=(String)链表.get(1);

try

{

double n1=Double.parseDouble(number1);

double n2=Double.parseDouble(number2);

double n=0;

if(运算符号.equals(”+“))

{

n=n1+n2;

}

else if(运算符号.equals(”-“))

{

n=n1-n2;

}

else if(运算符号.equals(”*“))

{

n=n1*n2;

}

else if(运算符号.equals(”/“))

{

n=n1/n2;

}

resultShow.setText(”“+n);

链表.set(0,”“+n);

链表.removeLast();

链表.removeLast();

}

catch(Exception ee)

{

}

}

}

else if(e.getSource()==小数点按钮)

{

if(链表.size()==0)

{

是否按下等号=false;

}

else if(链表.size()==1)

{

String dot=小数点按钮.getLabel();

String num=(String)链表.getFirst();

String s=null;

if(num.indexOf(dot)==-1)

{

s=num.concat(dot);

链表.set(0,s);

}

else

{

s=num;

}

链表.set(0,s);

resultShow.setText(s);

}

else if(链表.size()==3)

{

String dot=小数点按钮.getLabel();

String num=(String)链表.getLast();

String s=null;

if(num.indexOf(dot)==-1)

{

s=num.concat(dot);

链表.set(2,s);

}

else

{

s=num;

}

resultShow.setText(s);

}

}

else if(e.getSource()==退格按钮)

{

if(链表.size()==1)

{

String num=(String)链表.getFirst();

if(num.length()>=1)

{

num=num.substring(0,num.length()-1);

链表.set(0,num);

resultShow.setText(num);

}

else

{

链表.removeLast();

resultShow.setText(”0“);

}

}

else if(链表.size()==3)

{

String num=(String)链表.getLast();

if(num.length()>=1)

{ num=num.substring(0,num.length()-1);

链表.set(2,num);

resultShow.setText(num);

}

else

{

链表.removeLast();

resultShow.setText(”0“);

}

}

}

else if(e.getSource()==正负号按钮)

{

if(链表.size()==1)

{

String number1=(String)链表.getFirst();

try

{

double d=Double.parseDouble(number1);

d=-1*d;

String str=String.valueOf(d);

链表.set(0,str);

resultShow.setText(str);

}

catch(Exception ee)

{

}

}

else if(链表.size()==3)

{

String number2=(String)链表.getLast();

try

{

double d=Double.parseDouble(number2);

d=-1*d;

String str=String.valueOf(d);

链表.set(2,str);

resultShow.setText(str);

}

catch(Exception ee){

}

}

}

else if(e.getSource()==求倒数按钮)

{

if(链表.size()==1||链表.size()==2)

{

String number1=(String)链表.getFirst();

try

{

double d=Double.parseDouble(number1);

d=1.0/d;

String str=String.valueOf(d);

链表.set(0,str);

resultShow.setText(str);

}

catch(Exception ee){

}

}

else if(链表.size()==3)

{

String number2=(String)链表.getLast();

try

{

double d=Double.parseDouble(number2);

d=1.0/d;

String str=String.valueOf(d);

链表.set(0,str);

resultShow.setText(str);

}

catch(Exception ee){

}

}

}

else if(e.getSource()==清零按钮)

{

是否按下等号=false;

resultShow.setText(”0“);

链表.clear();

}

} public static void main(String args[])

{

new ComputerPad();

}

}

package computerpad;import java.awt.*;import java.awt.event.*;import javax.swing.*;public class NumberButton extends Button {

int number;

public NumberButton(int number)

{

super(”"+number);

this.number=number;

setForeground(Color.blue);

}

public int getNumber()

{

return number;

} }

import java.awt.*;import java.awt.event.*;import javax.swing.*;public class OperationButton extends Button {

String 运算符号;

public OperationButton(String s)

{

super(s);

运算符号=s;

setForeground(Color.red);

}

public String get运算符号()

{

return 运算符号;

} } 14 Java实训心得:

未接触Java之前,听人说Java这门语言如何的强大和难以入门,但学习之后,给我的感觉却是语言没有所谓的难于不难,关键是自己有没有真正投入去学,有没有花时间去学。Java是一门很好的语言,经过周围人对Java的宣传,我一开始不敢去学习这门语言,因为一门高级语言总是让人想到一开始的学习会很难,但是后来在自己的努力和老师同学的帮助下,我加入了Java学习者的行列。

老师把我们带进了门,那么,以后漫长的深入学习还是要靠自己。经常性的编写一些程序,或则去看懂、研究透别人编写的程序对于我们打好基础是非常有利的。让我们怀着对Java的一腔热情,用自己的刻苦努力去把Java学好。将来,用自己的成绩去回报有恩于我们的社会、家人和朋友。

第四篇:java编程

in the following code, which is the earliest statement, where the object originally held in e, may be garbage collected:

1.public class test {

2.public static void main(string args []){

3.employee e = new employee(“bob”, 48);

4.e.calculatepay();

5.system.out.println(e.printdetails());

6.e = null;

7.e = new employee(“denise”, 36);

8.e.calculatepay();

9.system.out.println(e.printdetails());

10.}

11.}

only one:

in the following code, which is the earliest statement, where the object originally held in e, may be garbage collected:

1.public class test {

2.public static void main(string args []){

3.employee e = new employee(“bob”, 48);

4.e.calculatepay();

5.system.out.println(e.printdetails());

6.e = null;

7.e = new employee(“denise”, 36);

8.e.calculatepay();

9.system.out.println(e.printdetails());

10.}

11.}

only one:

a.line 10

b.line 11

c.line 7

d.line 8

2:exhibit :

1.public class test(2.private static int j = 0;

3.4.private static boolean methodb(int k)(5.j += k;

6.return true;

6.)

7.8.public static void methoda(int i){

9.boolean b:

10.b = i < 10 | methodb(4);

11.b = i < 10 || methodb(8);

12.)

13.14.public static void main(string args[] }(15.methoda(0);

16.system.out.printin(j);

17.)

18.)

what is the result?

a.the program prints “0”

b.the program prints “4”

c.the program prints “8”

d.the program prints “12”

3:what is written to the standard output given the following statement:system.out.println(4|7);

select the right answer:

a.4

b.5

c.6

d.7

4:

select valid identifier of java:

select valid identifier of java:

a.%passwd

b.3d_game

c.$charge

d.this

5:设有变量说明语句int a=1,b=0;

则执行以下程序段的输出结果为()。

switch(a)

{

case 1:

switch(b)

{

case 0:printf(“**0**”);break;

case 1:printf(“**1**”);break;

}

case 2:printf(“**2**”);break;

}

printf(“ ”);

a.**0**

b.**0****2**

c.**0****1****2**

d.有语法错误

6:in the following pieces of code, which one will compile without any error?

a.stringbuffer sb1 = “abcd”;

b.boolean b = new boolean(“abcd”);

c.c: byte b = 255;

d.float fl = 1.2;

7:

what is the result when you compile and run the following code?

public class throwsdemo

{

static void throwmethod()

{

system.out.println(“inside throwmethod.”);

throw new illegalaccessexception(“demo”);

}

public static void main(string args[])

{

try

{

throwmethod();

}

catch(illegalaccessexception e)

{

system.out.println(“caught ” + e);

}

}

}

choices:

what is the result when you compile and run the following code?

public class throwsdemo

{

static void throwmethod()

{

system.out.println(“inside throwmethod.”);

throw new illegalaccessexception(“demo”);

}

public static void main(string args[])

{

try

{

throwmethod();

}

catch(illegalaccessexception e)

{

system.out.println(“caught ” + e);

}

}

}

choices:

a.compilation error

b.runtime error

c.compile successfully, nothing is printed.d.inside throwmethod.followed by caught:java.lang.illegalaccessexcption: demo

8:which of the following statements are not legal?

a.long l = 4990;

b.int i = 4l;

c.double d = 34.4;

d.double t = 0.9f.9:

give the following java class:

public class example{

public static void main(string args[]){

static int x[] = new int[15];

system.out.println(x[5]);

}

}

which statement is corrected?

give the following java class:

public class example{

public static void main(string args[]){

static int x[] = new int[15];

system.out.println(x[5]);

}

}

which statement is corrected?

a.when compile, some error will occur.b.when run, some error will occur.c.output is zero.d.output is null.10:下面关于变量及其范围的陈述哪些是错的。

a.实例变量是类的成员变量。

b.实例变量用关键字static声明。

c.在方法中定义的局部变量在该方法被执行时创建

d.局部变量在使用前必须被初始化。

11:

public class x{

public object m(){

object o = new float(3.14f);//line 3

object [] oa = new object[1];//line 4

oa[0] = o;//line 5

o=null;//line 6

return oa[0];//line 7

}

}

when is the float object, created in line 3,eligible for garbage collection?

public class x{

public object m(){

object o = new float(3.14f);//line 3

object [] oa = new object[1];//line 4

oa[0] = o;//line 5

o=null;//line 6

return oa[0];//line 7

}

}

when is the float object, created in line 3,eligible for garbage collection?

a.just after line 5.b.just after line 6

c.just after line 7(that is,as the method returns)

d.never in this method

12:

which is the most appropriate code snippet that can be inserted at line 18 in the following code?

(assume that the code is compiled and run with assertions enabled)

1.import java.util.*;

2.3.public class asserttest

4.{

5.private hashmap cctld;

6.7.public asserttest()

8.{

9.cctld = new hashmap();

10.cctld.put(“in”, “india”);

11.cctld.put(“uk”, “united kingdom”);

12.cctld.put(“au”, “australia”);

13.// more code...14.}

15.// other methods....16.public string getcountry(string countrycode)

17.{

18.// what should be inserted here?

19.string country =(string)cctld.get(countrycode);

20.return country;

21.}

22.}

which is the most appropriate code snippet that can be inserted at line 18 in the following code?

(assume that the code is compiled and run with assertions enabled)

1.import java.util.*;

2.3.public class asserttest

4.{

5.private hashmap cctld;

6.7.public asserttest()

8.{

9.cctld = new hashmap();

10.cctld.put(“in”, “india”);

11.cctld.put(“uk”, “united kingdom”);

12.cctld.put(“au”, “australia”);

13.// more code...14.}

15.// other methods....16.public string getcountry(string countrycode)

17.{

18.// what should be inserted here?

19.string country =(string)cctld.get(countrycode);

20.return country;

21.}

22.}

a.assert countrycode!= null;

b.assert countrycode!= null : “country code can not be null”;

c.assert cctld!= null : “no country code data is available”;

d.assert cctld : “no country code data is available”;

13:

give the following code:

public class example{

public static void main(string args[]){

int l=0;

do{

system.out.println(“doing it for l is:”+l);

}while(—l>0)

system.out.println(“finish”);

}

}

which well be output:

give the following code:

public class example{

public static void main(string args[]){

int l=0;

do{

system.out.println(“doing it for l is:”+l);

}while(—l>0)

system.out.println(“finish”);

}

}

which well be output:

a.doing it for l is 3

b.doing it for l is 1

c.doing it for l is 2

d.doing it for l is 0

14:which statements about java code security are not true?

a.the bytecode verifier loads all classes needed for the execution of a program.b.executing code is performed by the runtime interpreter.c.at runtime the bytecodes are loaded, checked and run in an interpreter.d.the class loader adds security by separating the namespaces for the classes of the local file system from those imported from network sources.15:a class design requires that a member variable should be accessible only by same package, which modifer word should be used?

a.protected

b.public

c.no modifer

d.private

16:character流与byte流的区别是

a.每次读入的字节数不同

b.前者带有缓冲,后者没有

c.前者是块读写,后者是字节读写

d.二者没有区别,可以互换使用

简答题

17:找出两个字符串中最大子字符串,如“abractyeyt”,“dgdsaeactyey”的最大子串为“actyet”

18:假设你有一个用1001个整数组成的数组,这些整数是任意排列的,但是你知道所有的整数都在1到1000(包括1000)之间。此外,除一个数字出现两次外,其他所有数字只出现一次。假设你只能对这个数组做一次处理,用一种算法找出重复的那个数字。如果你在运算中使用了辅助的存储方式,那么你能找到不用这种方式的算法吗?

19:到底在哪里使用cascade=“...”?

20:使用tomcat部署应用程序 遇到过java.lang.outofmemoryerror 吗?如何解决的。

21:请写一个java程序实现数据库缓冲池的功能?

22:有200个正整数,且每个数均在1000至9999之间。请编制函数,其函数的功能是:要求按每个数的后三位的大小进行升序排列,然后取出满足此条件的前10个数依次存入数组bb中,如果后三位的数值相等,则按原先的数值进行降序排列。

23:anonymous inner class(匿名内部类)是否可以extends(继承)其它类,是否可以implements(实现)interface(接口)?

24:找出字符串a中包含的字符可以进行的所有不同组合。例如:abccd中,ab,ac,bc,cc,abd等都是可能的组合。

25:下面的代码在绝大部分时间内都运行得很正常,请问在什么情况下会出现问题?问题的根源在哪里?

import java.util.linkedlist;

public class stack {

linkedlist list = new linkedlist();

public synchronized void push(object x){

synchronized(list){

list.addlast(x);

notify();

}

}

public synchronized object pop()

throws exception {

synchronized(list){

if(list.size()<= 0){

wait();

}

return list.removelast();

}

}

}

第五篇:JAVA编程心得体会

JAVA编程心得

计算机3班

窦金霞

20104773

最近几周一直在弄程序,说实话真的很累,但累中也有成功的快乐。我觉得学到了很多东西,这是只看课本知识所不能学到的。

说实话,以前我一直没学过JAVA虽然我也知道JAVA的重要性,可是即使上课听了,不实践还是掌握不了。因为种种原因,今年我没有买笔记本。没有机器,仅仅靠每周一次的上机练习是绝对不够的。所以我就插空调程序,在舍友们不用的时候自己再接她们的电脑调。

调上一个WEB版的通讯录程序时我已经感觉到学的很吃力,好多东西都不懂。这次做的这个学生成绩管理系统更复杂了,所以一开始调的时候感觉特别吃力.所以我告诉自己不能放弃,慢慢来,就这样我从最基本的sql语句session对象开始学起,我觉得我还有太多不懂得所以要比别人付出更多的努力。就这样我一点一点的学着„„

说心里话,在做上一个web版的通讯录时,我就感觉到成功的喜悦。好多地方我都是一点一点的问的,在问的过程中,我也学会了很多,像:Servlet和jsp之间跳不过去时有两种解决办法,一是关闭底层类中的db.close;二是将Servlet中的throws Exception改成try catch以捕捉异常;我还学到了集中查找错误的方法,可以加上两个双斜杠“//”将具体的方法屏蔽掉,一检查是方法错误还是Servlet错误,还有就是写上System.out.println()将获得的数据输出,用来检查数据传输过程有没有错误等等。

虽然在别人看来,这些方法可能都很常规,但是确实我自己学会的,我觉得很有成就感。我已经做好计划了,暑假的时候去买本本用自己的本本练习一下JAVA,虽然下学期不学JAVA了,但是我对JAVA的热情不会因为这个而削减的!

做完这个学生成绩管理系统后,我觉得我对JAVA的看法已经改变了。一前总以为JAVA很繁琐很难,听同学说JAVA不好学,开始又有一些听不懂,所以一直很畏惧JAVA。但真正做了这个系统以后我才感觉到其实任何事都没有难与不难之分,只要你肯努力的去做,世上无难事只怕有心人!

我现在对java学习充满了热情,我知道我还有很多的不足

还有很多需要努力的地方,所以我的JAVA之旅将继续进行„„

    版权声明:此文自动收集于网络,若有来源错误或者侵犯您的合法权益,您可通过邮箱与我们取得联系,我们将及时进行处理。

    本文地址:https://www.feisuxs.com/wenku/jingpin/5/2051523.html

相关内容

热门阅读

最新更新

随机推荐