码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2016-05-29 23:31:05      阅读:223      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!