在我的下面的代码中,我使用 j 变量,这是非最终的局部变量
for (int j = 0; j < 4; j++) {
if (videoCapture[j].isOpened()) {
panel = new JPanel() {
@Override
protected void paintComponent(Graphics g) {
super.paintComponent(g);
mat = new Mat();
videoCapture[j].read(mat);
BufferedImage image = Mat2BufferedImage(mat);
g.drawImage(image, 0, 0, this);
repaint();
}
};
}
在上面的代码中,我无法在videoCapture[j].read(mat)
中使用j。当我使用j时,它会给出错误不能引用封闭范围中定义的非局部变量j。如果我将j声明为final,则j不能递增。在这里我需要使用j,所以任何人都可以帮我解决这个问题吗?
答案 0 :(得分:3)
有一个解决方法。使用 temp 变量。像这样:
public static void main(String[] args) {
for (int i = 0; i < 10; i++) {
final int val = i; // temp final variable
new Thread() {
public void run() {
System.out.println(val); //the compiler checks for val (and according to javac rules, val should be (and it is) final).
};
}.start();
}
}