如何更改按钮阵列上的数字?

时间:2019-03-31 15:23:07

标签: java arrays button javafx

我的按钮当前显示数字1-9,但是我不知道如何显示数字9-1。

我已经在for循环中使用了不同的数字,但对我来说仍然无效。

   for (int row=0; row<3; row++) {
        for (int col = 1; col<4; col++) {
            int pieces = row*3 + col;
            String count = Integer.toString(pieces);
            Button button = new Button(count);

            GridPane.setRowIndex(button, row);
            GridPane.setColumnIndex(button, col);
            keypad.getChildren().add(button);

            button.setMinSize(80, 80);

        }
    }

1 个答案:

答案 0 :(得分:2)

从最大数量中减去计算出的数量即可倒数:

int rows = 3;
int cols = 3;
for (int row = 0; row < rows; row++) {
    for (int col = 0; col < cols; col++) {
        int pieces = rows * cols - (row * 3 + col);
        String count = Integer.toString(pieces);
        // ...
    }
}

或者,您也可以颠倒两个for循环:

for (int row = 2; row >= 0; row--) {
    for (int col = 3; col > 0; col--) {
        int pieces = row * 3 + col;
        String count = Integer.toString(pieces);
        // ...
    }
}