摘要: 1#include<iostream> 2 using namespace std; 3 class test{ 4 int mvalue; 5 public: 6 test(int i){ 7 cout << "test(int i)=" << i << endl; 8 mvalue = i; 9 阅读全文
posted @ 2019-11-18 23:24 刘大侠GG_B 阅读(113) 评论(0) 推荐(0) 编辑
摘要: class test{ 2 int mvalue; 3 public: 4 test(int i){ 5 cout << "test(int i) =" << i << endl; 6 mvalue = i; 7 } 8 int value(){ 9 return mvalue; 10 } 11 t 阅读全文
posted @ 2019-11-18 21:46 刘大侠GG_B 阅读(264) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> 2 using namespace std; 3 class test{ 4 int mvalue; 5 public: 6 test(int i){ 7 cout << "test(int i)=" << i << endl; 8 mvalue = i; 9 阅读全文
posted @ 2019-11-18 21:35 刘大侠GG_B 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 1、设备的阻塞方式访问 应用编程 sd=socke(...) recv(sd, ....)//无数据阻塞等待 有数据立即返回 希望按键设备 也能达到在用户空间阻塞方式访问 内核中为了实现设备的阻塞方式访问,提供了一套机制: 等待队列 核心数据结构 wait_queue_head_t 实验步骤: 1) 阅读全文
posted @ 2019-11-18 19:11 刘大侠GG_B 阅读(574) 评论(0) 推荐(0) 编辑
摘要: 1. 关于Vim vim是我最喜欢的编辑器,也是linux下第二强大的编辑器。 虽然emacs是公认的世界第一,我认为使用emacs并没有使用vi进行编辑来得高效。 如果是初学vi,运行一下vimtutor是个聪明的决定。 (如果你的系统环境不是中文,而你想使用中文的vimtutor,就运行vimt 阅读全文
posted @ 2019-11-18 17:04 刘大侠GG_B 阅读(342) 评论(0) 推荐(0) 编辑
摘要: 1 #include<iostream> 2 #include <stdio.h> 3 using namespace std; 4 class test{ 5 int mvalue; 6 public: 7 explicit test(int i=0){ //此处的explicit表明该构造函数需 阅读全文
posted @ 2019-11-18 17:02 刘大侠GG_B 阅读(241) 评论(0) 推荐(0) 编辑