我有一个程序可以与JTable和其他一些Swing元素一起工作,以显示和建模游戏的后端。该函数应该选择第一行并选择最后一行,并将它们分别存储在索引0和1的数组行中。感谢您的帮助,希望了解这里发生了什么。
public int[] getRows(JTable table) {
rows = new int [2];
rows[0] = table.getSelectedRow();
rowCount = table.getSelectedRowCount() - 1;
rows[1] = rows[0] + rowCount;
return rows;
}