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

前端 未结 1 1022
时光说笑
时光说笑 2020-12-11 15:31

The Qt container classes QList, QVector etc. require their element types to be copyable. Since C++11, the STL containers require

相关标签:
1条回答
  • 2020-12-11 15:52

    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.

    0 讨论(0)
提交回复
热议问题