Obsolete Members for QVarLengthArray
QVarLengthArray 클래스의 다음 멤버는 더 이상 사용되지 않습니다. 이들은 이전 소스 코드의 작동을 유지하기 위해 제공됩니다. 새 코드에서는 사용하지 않는 것이 좋습니다.
공용 함수
멤버 함수 문서
[deprecated in 6.3]
void QVarLengthArray::prepend(T &&value)
[deprecated in 6.3]
void QVarLengthArray::prepend(const T &value)
이 함수는 6.3부터 더 이상 사용되지 않습니다. 새 코드에서 이 함수를 사용하지 않는 것이 좋습니다.
속도가 느립니다. 꼭 사용해야 한다면 insert(cbegin(), ~~~)
대신 사용하세요.
배열의 시작 부분에 value 을 삽입합니다.
이는 vector.insert(0, value)와 동일합니다.
큰 배열의 경우 벡터의 모든 항목을 메모리에서 한 위치씩 더 이동해야 하므로 이 작업은 느릴 수 있습니다(선형 시간). 빠른 prepend() 함수를 제공하는 컨테이너 클래스를 원한다면 대신 std::list를 사용하세요.
© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.