上传资源列表
-
C++文件流代码示例
大小:13K 更新时间:2019-04-22 下载积分:2分
using namespace std;struct Person{ char name[10]; char date[12]; bool isFemale;};Person staff[5] = { "吴月","1977.05.30",true, "赵小光","1985.11.01",true, "王陆生","1978.05.19",false, "张强","1...
-
C++中istringstream流代码一例
大小:22K 更新时间:2019-04-22 下载积分:2分
#include<sstream>#include<iostream>#include<string>using namespace std;int main(){ string str1, str2, str3, str4, str5; istringstream strm1, strm2, strm3; getline(cin, str1); strm1.str(str1); str...
-
范围for与迭代器一例
大小:27K 更新时间:2019-04-22 下载积分:2分
#include<iostream>#include<vector>using namespace std;int main(){ vector<int> v1(10, 1); auto beg = v1.begin(); auto end = v1.end() - 1; vector<int> v2(beg, end); auto begin = v2.begin(), endd = ...
-
算法谓词代码一例
大小:24K 更新时间:2019-04-22 下载积分:2分
#include<iostream>#include<vector>#include<string>#include<algorithm>class prom{public: prom(int ia) :x(ia) {}; bool ret(int a){ return a > x; }private: int x=3;p...
-
const成员函数代码一例
大小:24K 更新时间:2019-04-22 下载积分:2分
#include<iostream>using namespace std;class Time{public: Time() = default; Time(int a, int b):x(a), y(b) {}; Time(int a) :x(a) {}; int confac(int* a)const { return ++*a;//这里是正确的吗?为什么...