std::end

来自cppreference.com
< cpp‎ | iterator

 
 
迭代器库
迭代器原语
原文:
Iterator primitives
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
iterator_traits
input_iterator_tag
output_iterator_tag
forward_iterator_tag
bidirectional_iterator_tag
random_access_iterator_tag
iterator
迭代器适配器
原文:
Iterator adaptors
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
reverse_iterator
流迭代器
原文:
Stream iterators
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
istream_iterator
ostream_iterator
istreambuf_iterator
ostreambuf_iterator
迭代器操作
原文:
Iterator operations
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
advance
distance
prev(C++11)
next(C++11)
远程接入
原文:
Range access
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
begin(C++11)
end(C++11)
 
在头文件 <iterator> 中定义
template< class C >
auto end( C& c ) -> decltype(c.end());
(1) (C++11 起)
template< class C >
auto end( const C& c ) -> decltype(c.end());
(2) (C++11 起)
template< class T, size_t N >
T* end( T (&array)[N] );
(3) (C++11 起)
返回一个迭代结束(即最后一个元素的元素后)给定的容器c或数组array.
原文:
Returns an iterator to the end (i.e. the element after the last element) of the given container c or array array.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

目录

[编辑] 参数

c -
的容器具有end方法
原文:
a container with an end method
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
array -
任意类型的数组
原文:
an array of arbitrary type
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 返回值

carray年底的迭代器。请注意,一个容器或数组的元素被定义为结束后,最后的有效元件.
原文:
an iterator to the end of c or array. Note that the end of a container or array is defined as the element following the last valid element.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 注释

除了被包括在<iterator>std::end保证变得可用,如果没有下面的接头连接器包括:<array><deque><forward_list><list><map><regex><set><string><unordered_map><unordered_set>,并<vector>.
原文:
In addition to being included in <iterator>, std::end is guaranteed to become available if any of the following headers are included: <array>, <deque>, <forward_list>, <list>, <map>, <regex>, <set>, <string>, <unordered_map>, <unordered_set>, and <vector>.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 专业化

定制专业的std::end可能会不露出一个合适的end()成员函数的类,还可以迭代。以下专业的标准库已经提供了
原文:
Custom specializations of std::end may be provided for classes that do not expose a suitable end() member function, yet can be iterated. The following specializations are already provided by the standard library:
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
模板特化 std::end
(函数模板) [edit]
模板特化 std::end
原文:
specializes std::end
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(函数模板) [edit]

[编辑] 示例

#include <iostream>
#include <vector>
#include <iterator>
#include <algorithm>
 
int main() 
{
    std::vector<int> v = { 3, 1, 4 };
    if (std::find(std::begin(v), std::end(v), 5) != std::end(v)) {
        std::cout << "found a 5 in vector v!\n";
    }
 
    int a[] = { 5, 10, 15 };
    if (std::find(std::begin(a), std::end(a), 5) != std::end(a)) {
        std::cout << "found a 5 in array a!\n";
    }
}

输出:

found a 5 in array a!

[编辑] 另请参阅

(C++11)
返回一个迭代器的容器或数组的开始
原文:
returns an iterator to the beginning of a container or array
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(函数) [edit]