bool focus = tableWidget->isItemSelected(tableWidget->currentItem()); // 判断是否选中一行
Int row1 = tableWidget->currentItem()->row(); // 当前选中行
这种情况下,当点击某一行的空单元格时,返回的是没有选中当前行,当然也就不能获取行号。
当实际情况是确实已经选中了改行的。
此时,可用
int QTableWidget::currentRow () const
Returns the row of the current item. 返回当前条目的行号