会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
SunShine_gzw
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
···
10
下一页
2022年1月10日
序列加密
摘要: #include <stdio.h> #include<string.h> #include<stdlib.h> char* encode(char* buf,int line) { int len=strlen(buf); int nlen=len; if(len%line) nlen=len+(
阅读全文
posted @ 2022-01-10 10:55 sunshine_gzw
阅读(54)
评论(0)
推荐(0)
2021年4月26日
epoll(1)
摘要: #include<stdio.h> #include<fcntl.h> #include<unistd.h> #include<sys/epoll.h> #include<arpa/inet.h> #include<sys/socket.h> #include<errno.h> #include <
阅读全文
posted @ 2021-04-26 15:01 sunshine_gzw
阅读(61)
评论(0)
推荐(0)
2021年3月14日
C++基本面试题1
摘要: #include<iostream>using namespace std;class A{public: A(char* s) :name(s), len(strlen(name.c_str())) {} void dis() { cout << len << endl; } //只跟下面的顺序有
阅读全文
posted @ 2021-03-14 21:40 sunshine_gzw
阅读(63)
评论(0)
推荐(0)
2021年3月13日
C++多线程之可重入锁
摘要: #include<iostream> #include<thread> #include<mutex> using namespace std; recursive_mutex re; void task1() { re.lock(); cout << "处理任务1中..." << endl; st
阅读全文
posted @ 2021-03-13 19:41 sunshine_gzw
阅读(2702)
评论(0)
推荐(0)
C++多线程之互斥锁和超时锁
摘要: #include<iostream> #include<thread> #include<mutex> using namespace std; mutex mu; void ThreadSource(int i) { mu.lock(); cout << "线程" << i << "开始执行了"
阅读全文
posted @ 2021-03-13 19:39 sunshine_gzw
阅读(1210)
评论(0)
推荐(0)
2021年3月5日
前置声明减少编译时头文件引用
摘要: 利用前向声明减少编译时头文件的引入 问题引入: 假设有三个头文件A,B,C,A中起初有一个类且有一个内联函数。 比如: class XTask1 { public: void test1(){} }; 在B中有: #include "A.h" class XTask2 { public: XTask
阅读全文
posted @ 2021-03-05 19:53 sunshine_gzw
阅读(175)
评论(0)
推荐(0)
2021年2月12日
C++多线程(一)
摘要: #include<iostream> #include<thread> using namespace std; void func() { cout << "子线程开始了" << endl; cout << "......" << endl; cout << "子线程结束了" << endl; }
阅读全文
posted @ 2021-02-12 18:14 sunshine_gzw
阅读(159)
评论(0)
推荐(0)
2021年2月4日
汇编语言之加载器加载用户程序
摘要: 效果图: 加载器代码: lbr_start equ 100 SECTION mbr align=16 vstart=0x7c00 mov ax,0 mov ss,ax mov sp,ax mov ax,[cs:phy_base] mov dx,[cs:phy_base+0x02] mov bx,16
阅读全文
posted @ 2021-02-04 00:09 sunshine_gzw
阅读(172)
评论(0)
推荐(0)
2021年1月12日
makefile
摘要: Makefile Linux环境下的程序员如果不会使用GNU make来构建和管理自己的工程,应该不能算是一个合格的专业程序 员,至少不能称得上是linux程序员。在Linux(unix)环境下使用GNU 的make工具能够比较容易的构建一个属于你 自己的工程,整个工程的编译只需要一个命令就可以完成
阅读全文
posted @ 2021-01-12 21:56 sunshine_gzw
阅读(231)
评论(0)
推荐(0)
2020年12月20日
static作用(1)
摘要: 当static修饰全局函数时,他的作用在于限制作用域: 有两个源文件: 在a.cpp中: 这两个函数在a.cpp中都是全局的,唯一区别仅在于一个用static修饰了,在源.cpp中: 总结下来就是,static修饰的全局函数只在本源文件中可见,在其他源文件中不可见。如果把static去掉,那么该全局
阅读全文
posted @ 2020-12-20 09:19 sunshine_gzw
阅读(89)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
···
10
下一页
公告