QRect如何写在默认参数中?
时间: 2023-05-22 13:02:13 浏览: 79
CustomHeader:在 QTableView 中使用 QComboBox 自定义 QHeaderView
QRect可以写在默认参数中,例如:
void foo(QRect rect = QRect(0, 0, 100, 100)) {
// do something
}
这样在调用foo函数时,如果没有传入参数,就会使用默认的QRect(0, 0, 100, 100)。如果传入了参数,就会使用传入的QRect。
阅读全文