如何打印std::paur<std::string,std::string>
时间: 2023-09-15 07:17:57 浏览: 65
各种塑料英文简称.doc
要打印`std::pair<std::string, std::string>`,你可以使用流输出运算符`<<`。例如:
```c++
#include <iostream>
#include <utility>
int main() {
std::pair<std::string, std::string> myPair("hello", "world");
std::cout << "(" << myPair.first << ", " << myPair.second << ")" << std::endl;
return 0;
}
```
输出结果为:
```
(hello, world)
```
阅读全文