System::Array::begin 方法

Array::begin() const method

返回一个迭代器,指向 const 限定容器的第一个元素。如果容器为空,返回的迭代器将等于 end()

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

ReturnValue

一个迭代器,指向 const 限定容器的第一个元素。

另见

Array::begin() method

返回一个迭代器,指向容器的第一个元素。如果容器为空,返回的迭代器将等于 end()

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

ReturnValue

一个迭代器,指向容器的第一个元素。

另见