我是 java 的初学者,我遇到了一个变量连接问题。
我创建了一个海战游戏,我想从一个数组更新前端的所有海上案例。
在 php 上,我们可以使用循环,但不能在 java 上:
for( int i = 0; i< tverite1.length; ++i){
for( int j = 0; j<tverite1[i].length; ++j){
button_+i+j.setText("0");
}
}
tverite is an array with each case of the sea
button_x_y buttons are the sea of the front-end
我需要帮助,因为我在网上没有看到一些问题,我不想只为此写 100 行。