template <typename T, typename Key>
bool key_exists(const T& container, const Key& key)
{
return (container.find(key) != std::end(container));
}
Elbette meraklısı olmak istiyorsanız, her zaman bulunan bir işlevi ve bulunmayan bir işlevi alan bir işlevi şablonlayabilirsiniz, böyle bir şey:
template <typename T, typename Key, typename FoundFunction, typename NotFoundFunction>
void find_and_execute(const T& container, const Key& key, FoundFunction found_function, NotFoundFunction not_found_function)
{
auto& it = container.find(key);
if (it != std::end(container))
{
found_function(key, it->second);
}
else
{
not_found_function(key);
}
}
Ve şu şekilde kullanın:
std::map<int, int> some_map;
find_and_execute(some_map, 1,
[](int key, int value){ std::cout << "key " << key << " found, value: " << value << std::endl; },
[](int key){ std::cout << "key " << key << " not found" << std::endl; });
Bunun dezavantajı iyi bir isim ile geliyor, "find_and_execute" garip ve başımın üst kapalı daha iyi bir şey ile gelemiyorum ...
std::pair<iterator,bool> insert( const value_type& value );
Geri döndüğü bool nedir? anahtarın mevcut olup olmadığını söyler mi?