恩恩,最近一个一个写小的c++文件,觉得每次都要定义一堆 #include 和 using 有些麻烦,不过现在打算开始收集一个全都是定义头文件的头文件,
今天先给出一个最近在用的命名为 “Origin.h”
#ifndef ORIGIN_H_INCLUDED #define ORIGIN_H_INCLUDED #include <iostream> #include <string> #include <cctype> using std::string; using std::cin; using std::cout; using std::endl; #endif//ORIGIN_H_INCLUDED //继续收集,保持更新
最近看到c++11 的两个新特性
for (auto c : s) //s for string cout << c << endl; //依次输出string中每个字符 decltype (s.size()) i = 0; //相当于 int i;
根本编译不了啦,明明一起下载的编译器是 GNU4.8.1,是支持c++11新特性的。还好我最终找到了解决方法
Settings -> compiler –> compiler flag –>
就酱啦,以上
时间: 2024-11-11 01:50:02