下列哪个方法可用于获取std::vector<std::string>容器steps的第一个元素?
std::vector<std::string>
steps.front();
steps.first();
steps[0];
steps.begin();