qt - is there a performance difference between QList<QList<int> >myList; and int ** myList;? -
I would like to know whether it is more efficient to use ** one int ** from QList or if they are too much There are more equals I have to do a lot of calculations so that I would like to get it faster.
If I have QList documentation:
Internally, QList is shown as an array of pointers for T type items
Ref:
< P> So, it looks very equivalent if you want to make sure, you can see or write source code.
Comments
Post a Comment