📄 thread_pool_client.h
字号:
#ifndef __THREAD_POOL_CLIENT_H__#define __THREAD_POOL_CLIENT_H__#include "thread_pool.h"void* processing(void* v);class thread_pool_client : public thread_pool{ char ip[16]; int serv; struct sockaddr_in client; void start(int){}public: thread_pool_client(int i, key_t key) : thread_pool(i,key){} void start(char*, int); friend void* processing(void* v);};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -