我的问题是贾瓦·安纳特:
我创建了一个类别<代码>MyClass,其方法为:getAllData(
:List<MyType> = 新的ArrayList<MyType>。 其他类别<代码> 我呼吁采用这一方法,并希望将返回名单写到另一个<代码>List<MyType>。
But I get the following error: Unhandled exception type Exception
我可以做些什么?
该法典:
<>MyClass.java
public List<MyType> datas = new ArrayList<MyType>();
public List<MyType> getAllData() throws Exception{
//add some things to datas...
return datas;
}
<>My OtherClass.java
public void fetchData(){
MyClass mydatas = new MyClass();
List<MyType> thedatas = mydatas.getAllData();
}
How can I solve the problem?
With an "try / catch(Exception e)" surrounding the statement, it seems not to get the returned List from getAllData();
预祝福!