当前位置: 技术问答>java相关
请问a method能return an exception吗?能写个例子看看吗?
来源: 互联网 发布时间:2015-03-14
本文导语: | 当然可以: public class ExceptionTest { public static void main(String[] args) { System.out.println(amethod().getMessage()); } static Exception amethod() { return new Exception("an Exception"); } } 输出:an Exception
|
当然可以:
public class ExceptionTest
{
public static void main(String[] args)
{
System.out.println(amethod().getMessage());
}
static Exception amethod()
{
return new Exception("an Exception");
}
}
输出:an Exception
public class ExceptionTest
{
public static void main(String[] args)
{
System.out.println(amethod().getMessage());
}
static Exception amethod()
{
return new Exception("an Exception");
}
}
输出:an Exception