Day 09-12 异常处理练习 From TeacherBi

题目概述:老师教学,依靠电脑,处理蓝屏、冒烟等异常。

流程图

 

/*
毕老师讲课
电脑运行
电脑重启

异常情况:
		电脑蓝屏
		电脑冒烟:处理不了,转换成老师的异常:无法继续讲课
*/

class LanPingException extends Exception
{
	LanPingException(String msg)
	{
		//System.out.println("电脑蓝屏");
		super(msg);
	}
}
class MaoYanException extends Exception
{
	MaoYanException(String msg)
	{
		super(msg);
	}
}
class NoPlanException extends Exception
{
	NoPlanException(String msg)
	{
		super(msg);
		
	}
	
}

class Computer
{
	private int state= 3;// Step1: 依次1,2,3赋值进行测试
	public void run() throws LanPingException,MaoYanException
	{
		if (state==2)
			throw new LanPingException("蓝屏");
		else if (state ==3)
			throw new MaoYanException("冒烟");
		else 
			System.out.println("电脑运行");
		
	}
	public void reset()
	{
		state = 1;
		System.out.println("电脑重启");
		
	}
}

class Teacher
{
	public String name;
	public Computer cmpt;
	Teacher(String name)
	{
		this.name= name;
		cmpt = new Computer();
	}
	public void teach() throws NoPlanException
	{
		try
		{
			cmpt.run();
		}
		catch(LanPingException e) 
		{
			cmpt.reset();
		}
		catch(MaoYanException e)
		{
			test();
			throw new NoPlanException("课时无法继续  "+e.getMessage());
			
		}
		System.out.println("讲课");
	}
	public void test()
	{
		System.out.println("练习!");
	}
	
}

class ExceptionTest
{
	public static void  main(String[] args)
	{
		Teacher t=new Teacher("毕老师");
		try
		{
			t.teach();
		}
		catch(NoPlanException e)
		{
			System.out.println(e.toString());
			System.out.println("放假");
			
		}
	}
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值