Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

When does a deep copy happen to a QList?

Tags:

c++

qt

qlist

In a class I'm working on, I am juggling several QLists. I have heard that Qt tries not to make deep copies of lists whenever possible. From what I understand, that means that no deep copy happens when you do this:

QList<int> myList;
myList << 1 << 2 << 3 << 4;
QList<int> otherList = myList;  // No deep copy

In some cases, I need to make sure a deep copy never happens to the QList. Exactly what kind of operation or action do I need to make sure to avoid in order to make sure a deep copy never happens to a QList I'm working with?

like image 620
Cory Klein Avatar asked Jul 28 '11 21:07

Cory Klein


1 Answers

QLists are implemented using implicit sharing.

Object assignment (with operator=()) for implicitly shared objects is implemented using shallow copies.

This means that assignment alone will never cause the contained data to be copied. However, writing to a shared instance will cause the source object to be copied. This pattern is commonly known as copy-on-write.

So, to answer your question, if you never write to shared instances then they will never be copied. If you want to completely prevent copies being made then derive from QList and override and hide the copy constructor and assignment operator.

like image 105
Stu Mackellar Avatar answered Sep 23 '22 13:09

Stu Mackellar