Std :: dynarray vs std :: vectorC++

Программы на C++. Форум разработчиков
Anonymous
Std :: dynarray vs std :: vector

Сообщение Anonymous »

The C++14 standard introduces std::dynarray (edit: evenutally, this was not accepted into the standard):

std::dynarray is a sequence container that encapsulates arrays with a
size that is fixed at construction and does not change throughout the
lifetime of the Object. Что выгодно для выбора его по сравнению с std :: vector , что более динамично (и также повторно)?

Подробнее здесь: https://stackoverflow.com/questions/191 ... -stdvector

Вернуться в «C++»