Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 1.36 KB

requirements-for-stl-clr-container-elements.md

File metadata and controls

25 lines (17 loc) · 1.36 KB
description title ms.date ms.topic helpviewer_keywords ms.assetid
Learn more about: Requirements for STL/CLR Container Elements
Requirements for STL/CLR Container Elements
11/04/2016
reference
C++ Standard Library, template class containers
STL/CLR, containers
containers, STL/CLR
containers, C++ Standard Library
59ab240c-15bf-4701-a9f9-e7c56e5ab53f

Requirements for STL/CLR Container Elements

All reference types that are inserted into STL/CLR containers must have, at a minimum, the following elements:

  • A public copy constructor.

  • A public assignment operator.

  • A public destructor.

Furthermore, associative containers such as set and map must have a public comparison operator defined, which is operator< by default. Some operations on containers might also require a public default constructor and a public equivalence operator to be defined.

Like reference types, value types and handles to reference types that are to be inserted into an associative container must have a comparison operator such as operator< defined. The requirements for a public copy constructor, public assignment operator, and a public destructor do not exist for value types or handles to reference types.

See also

C++ Standard Library Reference