首页 > 其他 > 详细

【DAY7】第七天的关于异常的练习

时间:2016-05-29 23:29:59      阅读:409      评论:0      收藏:0      [点我收藏+]
class WeightTooMuchException extends RuntimeException
{
	private String message;
		public WeightTooMuchException(String message)
	{
		this.message=message;
	}
	public String getMessage()
	{
		return message;
	}
	public void setMessage(String message)
	{
		this.message=message;
	}

}
class WeightTooLowException extends RuntimeException
{
	private String  message;
	public WeightTooLowException(String message)
	{
		this.message=message;
	}
	public String getMessage()
	{
		return message;
	}
	public void setMessage(String message)
	{
		this.message=message;
	}
}
class Man 
{
	private int weight;
	public void setWeight(int weight) //throws WeightTooMuchException,WeightTooLowException
	{
		if(weight > 100)
		{
			throw new WeightTooMuchException("You are too fat");
		}
		else if(weight < 50)
		{
			throw new WeightTooLowException("You are too thin");
		}
		this.weight=weight;
	}
	public int getWeight()
	{
		return weight;
	}
}
class WeightDemo2
{
	public static void main(String[] args)
	{
		Man man=new Man();
		try
		{
			man.setWeight(40);			
		}
		catch(WeightTooLowException ex)
		{
			System.out.println(ex.getMessage());
		}
		catch(WeightTooMuchException ex)
		{
			System.out.println(ex.getMessage());
		}
	}
}


本文出自 “yehomlab” 博客,请务必保留此出处http://yehom.blog.51cto.com/5159116/1784239

【DAY7】第七天的关于异常的练习

原文:http://yehom.blog.51cto.com/5159116/1784239

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!