Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why do Qt's container classes not allow movable, non-copyable element types?

The Qt container classes QList<T>, QVector<T> etc. require their element types to be copyable. Since C++11, the STL containers require their element type to be copyable or movable only. Why do the Qt containers not support move-only element types?

like image 519
Ralph Tandetzky Avatar asked Sep 15 '15 11:09

Ralph Tandetzky


1 Answers

Qt bug #54685 has explicit confirmation from Qt developers that move-only types are not (and will never be) supported because of Qt containers' principle of implicit sharing.

When you copy one Qt container to another, you're not doing a deep copy—the containers share their contents internally. Only when a modifying function is called on a container does it detach, creating its own local copy of the contents. This allows Qt containers to be passed around through signals and slots (which is necessarily by value) without the performance plummetting.

This would of course be impossible when the contained type is move-only. And the ability to pass containers around by value (without copying their contents) is fundamental to Qt's meta-object mechanism, so I do not think it could be redesigned. Qt APIs rely on implicit sharing and pass containers around by value even where a move-only container would be passed by reference, so there is no easy way out.

like image 87
Angew is no longer proud of SO Avatar answered Oct 10 '22 06:10

Angew is no longer proud of SO