std::filesystem::recursive_directory_iterator::operator*, std::filesystem::recursive_directory_iterator::operator->
const std::filesystem::directory_entry& operator*() const; |
(1) | (C++17 起) |
const std::filesystem::directory_entry* operator->() const; |
(2) | (C++17 起) |
访问所指的 directory_entry
尾迭代器上的 operator*
或 operator->
产生未定义行为。
参数
(无)
返回值
1) 此迭代器所指代的 directory_entry 的值
2) 指向此迭代器所指代的 directory_entry 的指针
异常
(无)
参阅
访问所指的目录条目 ( std::filesystem::directory_iterator 的公开成员函数) |