⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pairtest.cpp

📁 C++高级编程这本书所附的源代码
💻 CPP
字号:
#include <utility>#include <string>#include <iostream>using namespace std;int main(int argc, char** argv){  // two-argument ctor and default ctor  pair<string, int> myPair("hello", 5), myOtherPair;  // Can assign directly to first and second  myOtherPair.first = "hello";  myOtherPair.second = 6;  // copy ctor  pair<string, int> myThirdPair(myOtherPair);  // operator<  if (myPair < myOtherPair) {    cout << "myPair is less than myOtherPair\n";  } else {    cout << "myPair is greater than or equal to myOtherPair\n";  }  // operator==  if (myOtherPair == myThirdPair) {    cout << "myOtherPair is equal to myThirdPair\n";  } else {    cout << "myOtherPair is not equal to myThirdPair\n";  }  pair<int, int> aPair = make_pair(5, 10);  return (0);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -