我有一个带有const char*[2]
参数的 Visual Studio 2008 C++ 应用程序,我想将其转换为std::pair< std::string, std::string >
. 有没有一种简单的方法可以做到这一点?
例如:
typedef std::pair< std::string, std::string > Group;
const char* a[ 2 ] = { "buzz", "foo" };
Group z = a; // ???
// a->first.c_str() == "buzz"
// a->second.c_str() == "foo"
谢谢,保罗