若要在std::vector<std::string>容器steps末尾添加新元素"晾干",应使用的方法是?
std::vector<std::string>
steps.push_back("晾干");
steps.insert("晾干");
steps.add("晾干");
steps.extend("晾干");