我有一个适度的编程背景,但我对Java完全是绿色的。我在工作中继承了一些Java代码,我只是想正确地调用这个列表。
协助表示赞赏。
public class CallTestClassList {
try { <how do I properly call the list from TestClass?> }
}
public class TestClass {
public List TestList() {
String s = null;
List cData = new ArrayList();
String[] Warning = null;
String[] Error = null;
int flag = 0;
}
return cData;
}
答案 0 :(得分:0)
new TestClass().TestList();
至少,我认为这就是答案,因为我不知道TestClass
有哪种构造函数。