若要将std::vector<std::string>容器steps中的所有元素清空,应使用?
std::vector<std::string>
steps.clear();
steps.empty();
steps.remove_all();
steps.reset();