//对象为:电脑
//具备的功能:运行,重启
class Computer
{
private int state=3;//电脑状态
public void run() throws LanPingException,MaoYanException
{
if(state==2)
throw new LanPingException("蓝屏了");
//对象为:电脑
//具备的功能:运行,重启
class Computer
{
private int state=3;//电脑状态
public void run() throws LanPingException,MaoYanException
{
if(state==2)
throw new LanPingException("蓝屏了");