摘要:
主要介绍一下C++11版本中标准模板库中栈的用法,希望可以帮到需要用的人。 #include <iostream> #include <stack> #include <list> #include <vector> using namespace std; //c++11 STL stack ty 阅读全文
摘要:
#include <iostream> using namespace std; int main() { cout << __cplusplus << endl; return 0; } 阅读全文