简介 最近VScode发布了远程编程与调试的插件Remote Development,使用这个插件可以在很多情况下代替vim直接远程修改与调试服务器上的代码,同时具备代码高亮...
简介 最近VScode发布了远程编程与调试的插件Remote Development,使用这个插件可以在很多情况下代替vim直接远程修改与调试服务器上的代码,同时具备代码高亮...
1.双端队列介绍 双端队列(dequeue) 与vector很类似,采用线性表顺序存储结构,且支持随机访问,即可以直接用下标来访问元素。但与vector有区别: deque采...
文中的字符串split函数功能是从字符串中按照特定的分隔符进行分割,分割的结果保存到std::vector中。 1.strtok实现 std::vector split(c...
#include #include using namespace std; void main() { map dic; dic.insert(pair ("a...
定义rpc调用的方法 package library type Watcher intfunc (w *Watcher) GetInfo(arg int,result *in...
一,导语 在使用VMware虚拟机时,磁盘空间不足,发现在原有的磁盘上扩充并不会扩充ubuntu的文件空间,只能通过添加新的磁盘,然后挂载。 二,VMware操作 ...
/* vector usage */ #include #include <vector> using namespace std; static void show_arr...
vector 简单用法 数组传进vector方式: int a[3]={1,2,3} vector test; for(int i=0;i<3;i++) test.pu...
C++重要知识点小结---1 1.C++中类与结构的唯一区别是:类(class)定义中默认情况下的成员是private的,而结构(struct)定义中默认情况下的成员是pub...
简单的派生类的构造函数 #include #include usingnamespacestd; classStudent//声明基类 { protected: intnum...
/* class_opt_cin_out overload */ #include using namespace std; class Distance { private...
/* class 运算符重载 */ #include using namespace std; class Box { private: int length; publi...
/* 友元函数可以访问类的 private 和 protected 成员。 */ /* class friend func */ #include using namespa...
/* class constructor && desctructor */ /* 新建一个对象, 使用老的对象赋值,实际上是调用的拷贝构造函数 */ #include us...
/* class constructor && desctructor */ #include using namespace std; class Line { priva...
/* class_protect.class */ /* 基类转换派生类问题:(不安全的转换) 既然转换了那就是指向派生类了,调用函数不涉及到变量还可以, 如果涉及到变量就是...
/* class_protect.class */ /* 派生类通过基类的public函数访问基类的私有成员 */ #include #include <cstring> u...
//文件打开方式选项: //ios::in= 0x01,//供读,文件不存在则创建(ifstream默认的打开方式) //ios::out = 0x02,//供写,文件不存在...
/* time2 */ #include #include <ctime> #include <cstring> #include using namespace std; ...
string的引用类型可以减少内存拷贝 /* string refer 在传递参数的时候,如果参数是string类型,可以用string类型的引用,减少内存的拷贝。 */ #...