QAbstractItemModel类的说明和使用(未完待续)

QAbstractItemModel类是所有模型类的直接或间接父类,它定义了模型的通用接口函数,相关接口函数如下:

1、行数和列数

//返回行数
int rowCount(const QModelIndex &parent=QModelIndex());
//返回列数
int columnCount(const QModelIndex &parent=QModelIndex());

你可能感兴趣的:(QT编程学习,qt)