本文整理汇总了C++中map_t::emplace方法的典型用法代码示例。如果您正苦于以下问题:C++ map_t::emplace方法的具体用法?C++ map_t::emplace怎么用?C++ map_t::emplace使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类map_t
的用法示例。
在下文中一共展示了map_t::emplace方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: runtime_error
// insert
std::pair<class map_t::const_iterator, bool>
emplace(const KEY_T& key, const PAY_T& pay) {
if (file_mode == READ_ONLY) {
throw std::runtime_error("Error: emplace called in RO mode");
}
return map->emplace(key, pay);
}
示例2: map_string
const char* name_t::map_string(const char* str, std::size_t hash) {
typedef std::unordered_map<std::size_t, const char*> map_t;
typedef std::lock_guard<std::mutex> lock_t;
static std::mutex sync_s;
lock_t lock(sync_s);
static adobe::unique_string_pool_t pool_s;
static map_t map_s;
map_t::const_iterator found(map_s.find(hash));
return found == map_s.end() ? map_s.emplace(hash, pool_s.add(str)).first->second
: found->second;
}