我是靠谱客的博主 高挑小松鼠,最近开发中收集的这篇文章主要介绍c/c++ 网络编程与多线程 编译参数c/c++ 学习互助QQ群:877684253本人微信:xiaoshitou5854,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
网络编程与多线程 编译参数
编译时要链接操作系统的pthread库
g++ -g socket01.cpp -std=c++11 -pthread
不加-pthread的话,出现下面的错误:
terminate called after throwing an instance of 'std::system_error'
what(): Enable multithreading to use std::thread: Operation not permit
ted
例子:
#include <sys/types.h>//socket()
#include <sys/socket.h>//socket()
#include <unistd.h>//close()
#include <arpa/inet.h>//结构体sockaddr_in
#include <string.h>//函数strstr
#include <iostream>
#include <thread>
using namespace std;
class TcpThread{
public:
void main(){
cout << "in tread main !!!!!!!!!!!!!!" << endl;
char buf[1024] = {0};
while(true){
//虽然指定了接收数据的大小为sizeof(buf) - 1,
//但实际能接收到多少,是不一定的,
//len1是实际接到的数据的大小
int len1 = recv(client, buf, sizeof(buf) - 1, 0);
cout << "recv len is : " << len1 << endl;
if(len1 <= 0) break;
buf[len1] = '