reverse_iterator TO iterator

//using rit.base() function

#include <string>

std::string test("hello");

std::string::reverse_iterator rit = test.rbgin();

std::string::iterator it(rit.base());

原文地址:https://www.cnblogs.com/azor/p/3740137.html