Codectionary / Developer documentation / C++

C++ std::unordered_map

C++ reference for c++ std::unordered_map.

Syntax

#include <unordered_map>
std::unordered_map<std::string, int> cache;

Examples

C++ std::unordered_map example

A focused example you can adapt while practising.

#include <unordered_map>
std::unordered_map<std::string, int> cache;

Best practices

  • Start with the smallest working example, then adapt it to your project.
  • Use the language’s standard library and idioms before introducing extra dependencies.

At a glance

Purpose
Systems and general-purpose software
File extension
.cpp · .hpp
Runs in
Compiled native applications
Usually used with
Compiler and standard library

Specifications & further reading

Related C++ documentation