我正在使用 beanshell,我想使用 arraylist
我的代码 -
import java.util.*;
List test= new ArrayList();
test.add("Last Name");
但我得到以下异常
Caused by: org.apache.bsf.BSFException: BeanShell script error:Typed variable declaration :
Attempt to resolve method: add() on undefined variable or class name: test: at Line: 206
知道是什么导致了问题吗?
谢谢