System::Array::end 方法

Array::end() const method

返回指向 const 限定容器最后一个元素之后的元素的迭代器。该元素充当占位符;尝试访问它会导致未定义行为。

const_iterator System::Array<T>::end() const noexcept

ReturnValue

一个指向 const 限定容器中最后一个元素之后的理论元素的迭代器。

另见

Array::end() method

返回指向容器最后一个元素之后的元素的迭代器。该元素充当占位符;尝试访问它会导致未定义行为。

iterator System::Array<T>::end() noexcept

ReturnValue

一个指向容器中最后一个元素之后的理论元素的迭代器。

另见