我想将我的 java 代码用作 beanshell 脚本,但 beanshell 抛出异常,说在命名空间中找不到类。beanshell中没有内部类还是有其他用途?
我的脚本如下所示:
.......
.......
java code
.......
.......
MyClass m = new MyClass(); //Error here: MyClass not fount in namespace
class MyClass {
}
我在脚本中使用内部类,我在脚本中声明。
谢谢, 比拉尔