格[targetheight] [targetwidth] .setValue(变量)
因此,在targetheight和targetwidth处有一个特定的矩阵元素。我想使用仅适用于WhiteBox,setValue的方法来修改此元素。但由于setValue不是接口Box声明的方法,我是SOL。我该如何访问它?网格应该存储一堆盒子,但是其中一些盒子是不同的,我想对它们做不同的事情。我很困惑,请帮忙。
编辑: 为什么
((WhiteBox)grid [targetheight] [targetwidth])。setValue(v);
工作但是
(WhiteBox)grid [targetheight] [targetwidth] .setValue(v);
不