Hex、RGB和HSL颜色模式下的40个漂亮的颜色代码
《C++ STL advance()函数》一节中,详细讲解了 advance() 函数的功能,其可以将指定迭代器前移或后移 n 个位置的距离。
但值得一提的是,advance() 函数移动的是源迭代器,举个例子:
#include <iostream> // std::cout
#include <iterator> // std::advance
#include <vector>
using namespace std;