operator==,!=,<,<=,>,>=(std::map)

来自cppreference.com
< cpp‎ | container‎ | map

 
 
 
std::map
成员函数
原文:
Member functions
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
map::map
map::~map
map::operator=
map::get_allocator
元素的访问
原文:
Element access
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
map::at
map::operator[]
迭代器
原文:
Iterators
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
map::begin
map::cbegin

(C++11)
map::end
map::cend

(C++11)
map::rbegin
map::crbegin

(C++11)
map::rend
map::crend

(C++11)
容量
原文:
Capacity
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
map::empty
map::size
map::max_size
修饰符
原文:
Modifiers
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
map::clear
map::insert
map::emplace(C++11)
map::emplace_hint(C++11)
map::erase
map::swap
查找
原文:
Lookup
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
map::count
map::find
map::equal_range
map::lower_bound
map::upper_bound
观察员
原文:
Observers
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
map::key_comp
map::value_comp
 

检查到模板循环:Template:include page

template<  >

bool operator==( map<>& lhs,

                 map<>& rhs );
(1)
template<  >

bool operator!=( map<>& lhs,

                 map<>& rhs );
(2)
template<  >

bool operator<( map<>& lhs,

                map<>& rhs );
(3)
template<  >

bool operator<=( map<>& lhs,

                 map<>& rhs );
(4)
template<  >

bool operator>( map<>& lhs,

                map<>& rhs );
(5)
template<  >

bool operator>=( map<>& lhs,

                 map<>& rhs );
(6)
比较两个容器的内容.....
原文:
Compares the contents of two containers.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
1-2) Checks if the contents of lhs and rhs are equal, that is, whether lhs.size() == rhs.size() and each element in lhs has equivalent element in rhs at the same position.
3-6)
比较的内容lhsrhs字典。在执行比较的功能相当于std::lexicographical_compare.
原文:
Compares the contents of lhs and rhs lexicographically. The comparison is performed by a function equivalent to std::lexicographical_compare.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 参数

lhs, rhs -
容器中的内容进行比较
原文:
containers whose contents to compare
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 返回值

1)
true的容器中的内容是否是等效,false否则
原文:
true if the contents of the containers are equivalent, false otherwise
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
2)
true如果容器的内容是不等价的,false否则
原文:
true if the contents of the containers are not equivalent, false otherwise
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
3)
true如果内容的lhs字典“小于”比内容rhsfalse否则
原文:
true if the contents of the lhs are lexicographically less than the contents of rhs, false otherwise
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
4)
true如果内容的lhs字典“小于”或“等于”的内容rhsfalse否则
原文:
true if the contents of the lhs are lexicographically less than or equal the contents of rhs, false otherwise
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
5)
true如果内容的lhs字典“更大”比内容rhsfalse否则
原文:
true if the contents of the lhs are lexicographically greater than the contents of rhs, false otherwise
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
6)
true如果内容的lhs字典“更大”大于或“等于”的内容rhsfalse否则
原文:
true if the contents of the lhs are lexicographically greater than or equal the contents of rhs, false otherwise
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 复杂性

线性大小的容器
原文:
Linear in the size of the container
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里