我是 Java 新手,几天以来一直在做一些基本的编码。今天在处理变量和内部类时,我在内部类中使用非最终变量时卡住了。
我正在为我的工作使用 testNG 框架,所以这是我正在尝试的场景,
=========
public class Dummy extends TestNG {
@Override
public void setUp() throws Exception {
log.error("Setup Goes here");
}
@Override
public void test() throws Exception {
String someString = null;
try {
someString = "This is some string";
} catch (Exception e) {
log.error(e.getMessage());
}
Thread executeCommand = new Thread(new Runnable() {
@Override
public void run() {
try {
runComeCommand(someString, false); <=====ERROR LINE
} catch (Exception e) {
log.error(e.getMessage());
}
}
});
}
@Override
public void cleanUp() throws Exception {
}
}
==========
当我写上面的代码时,它抛出了一个错误,说“不能引用内部类中的非最终变量”。所以我实现了 eclips 提供的建议之一,即在父类中声明 someString 变量。现在代码看起来像这样,
==========
public class Dummy extends TestNG {
String someString = null; <=====Moved this variable from test() to here
@Override
public void setUp() throws Exception {
log.error("Setup Goes here");
}
@Override
public void test() throws Exception {
<same code goes here>
}
@Override
public void cleanUp() throws Exception {
}
}
==========
现在它在 eclips 中没有显示任何错误。我想知道,为什么它现在接受内部类中的变量,即使它不是最终的。它不应该因同样的错误而失败吗?现在可以吗?任何帮助都会很棒。