Linux与C++11多线程编程(学习笔记)_vs 编写linux c++11(1)

最后的话

最近很多小伙伴找我要Linux学习资料,于是我翻箱倒柜,整理了一些优质资源,涵盖视频、电子书、PPT等共享给大家!

资料预览

给大家整理的视频资料:

给大家整理的电子书资料:

如果本文对你有帮助,欢迎点赞、收藏、转发给朋友,让我有持续创作的动力!

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化的资料的朋友,可以点击这里获取!

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

int main()
{
pthread_t threadid;
pthread_create(&threadid, NULL,threadfunc, NULL);
while (1)
{

}
return 0;

}

* Windows CRT[1](#fn1)提供的线程创建函数

 

#include <process.h>
#include <stdio.h>
unsigned int __stdcall threadfun(void* args)
{
while (true)
{
printf(“I am new thread!”);
}
return 0;
}
int main(int argc,char* argv[])
{
unsigned int threadid;
_beginthreadex(0, 0, threadfun, 0, 0, &threadid);

while (true)//不让主线程退出
{

}
return 0;

}

* C++ 提供的`std::thread`类

 

#include
#include

void threadproc1()
{
while (true)
{
printf(“I am aNew Thread!!”);
}
}

void threadproc2(int a,int b)
{
while (true)
{
printf(“I an Thread2”);
}
}

int main()
{
std::thread t1(threadproc1);
std::thread t2(threadproc2, 1, 2);
while (true)
{

}

}

 这种方法容易出错,原因如下:

 

#include
#include

void threadproc1()
{
while (true)
{
printf(“I am aNew Thread!!”);
}
}

void func()
{
std::thread t(threadproc1);
}
int main()
{
func();
while (true)
{

}

}

 这段代码实际上试运行不了的,在vs2019 release模式下结果:

 ![image-20210703231616070](https://img-blog.csdnimg.cn/img_convert/f559ce0ad4ccdd879c5e1ecc0b78fdb3.png)

 在func函数调用完成后,func中的局部变量t被销毁,而此时线程函数仍然在运行.所以使用`std::thread`创建线程必须保证线程函数运行期间,线程对象始终有效!!

 当然,我们也可以使用`detach`方法解决这个问题,使线程函数和线程对象脱离

 


void func()
{
std::thread t(threadproc1);
t.detach();
}

 这样就可以运行了,但是不推进这样做,因为我们需要线程对象对线程进行管理

 ### 3.2.2线程ID

 下面介绍一下Linux系统线程ID本质
* Linux系统线程ID本质

 在Linux系统中有三种方法可以获取一个线程的ID


	+ 调用`pthread_create`函数时,可以通过第一个参数获取线程ID
	+ 在需要获取ID的线程中调用`pthread_self`函数获取
	+ **通过系统调用获取线程ID**其中,方法一和方法二获取线程ID的结果都是一样的,都是`pthread_t`类型

 ![image-20210703234233186](https://img-blog.csdnimg.cn/img_convert/54d402adfd1744a847062c341eec33c6.png)


不同的进程可能有同样的地址内存块(共享内存),所以通过方法一和方法二获取到的线程ID可能不是全系统唯一的,而方法三获取的线程ID是全系统唯一的,就是LWP(轻量级进程)[2](#fn2)


* C++ 获取线程ID的方法

 

#include
#include
#include
void worker_thread_func()
{
while (true)
{

}

}

int main()
{
//获取线程t的id
std::thread t(worker_thread_func);
std::thread::id worker_thread_id=t.get_id();
std::cout<<worker_thread_id<<std::endl;
//获取主线程的id
std::thread::id main_thread_id = std::this_thread::get_id();
std::cout<<main_thread_id<<std::endl;
while (true)
{
}
}

 运行结果(ubuntu20):

 ![image-20210704182253896](https://img-blog.csdnimg.cn/img_convert/b5f34e74b837349f810e45267820f35d.png)


### 3.2.3 等待线程结束


* 在Linux下等待线程结束

 Linux 线程库提供了`pthread_join`函数,用来等待某线程的退出并接收他的返回值

 这种操作被称为汇接(join)

 

Declared in: pthread.h
static int pthread_join(pthread_t __th, void * *__thread_return)

 参数`__th`是需要等待的线程ID;参数\_\_thread\_\_return是输出参数,用于接受被等待线程的退出码,

 可以再调用`pthread_exit()`时指定退出码

 

Declared in: pthread.h
static void pthread_exit(void *__retval)

 其中`__retval`可以通过\_\_thread\_return参数获得

 下面来展示一个实例,在程序启动时开启一个工作线程,工作线程将当前系统时间写入一个文件后,主线程等待工作线程退出后,从文件中读取时间,并将其输出

 

#include
#include
#include <pthread.h>
#include
#define TIME_FILENAME “time.txt”
void* fileThreadFunc(void* arg)
{
time_t now = time(nullptr);
tm* t = localtime(&now);
char timeStr[32]={0};
snprintf(timeStr,32,“%04d/%02d %02d:%02d:%02d”,
t->tm_year+1900,
t->tm_mon+1,
t->tm_mday,
t->tm_hour,
t->tm_min,
t->tm_sec);
FILE* fp = fopen(TIME_FILENAME,“w”);
if(fp == nullptr)
{
printf(“打开文件(time.txt)失败\n”);
return nullptr;
}
size_t sizeToWrite=strlen(timeStr) +1;
size_t ret = fwrite(timeStr,1,sizeToWrite,fp);
if(ret != sizeToWrite)
{
printf(“写入错误!\n”);
}
fclose(fp);
return nullptr;
}

int main()
{
pthread_t fileThreadID;
int ret = pthread_create(&fileThreadID, nullptr,fileThreadFunc, nullptr);
if(ret != 0)
{
printf(“创建线程失败\n”);
return -1;
}
int* retval;
pthread_join(fileThreadID,(void**)&retval);
FILE* fp = fopen(TIME_FILENAME,“r”);
if(fp == nullptr)
{
printf(“打开文件失败!\n”);
return -2;
}

char  buf[32] = {0};
int sizeRead = fread(buf,1,32,fp);
if(sizeRead == 0)
{
    printf("读取文件失败");
    fclose(fp);
    return -3;
}

printf("Current time is: %s.\n",buf);

fclose(fp);
return 0;

}

 执行结果如下:

 ![image-20210704185826945](https://img-blog.csdnimg.cn/img_convert/c4d9e1df0f8fe2e738261ba2183a264c.png)
* Windows 等待线程结束

 在Windows下我们可以使用`WaitForSingleObject function (synchapi.h)`和`WaitForMultipleObjects function (synchapi.h)`
* **C++11提供的等待线程结束的函数**

 

#include
#include
#include
#define TIME_FILENAME “time.txt”
void fileThreadFunc()
{
time_t now = time(nullptr);
tm* t = localtime(&now);
char timeStr[32]={0};
snprintf(timeStr,32,“%04d/%02d %02d:%02d:%02d”,
t->tm_year+1900,
t->tm_mon+1,
t->tm_mday,
t->tm_hour,
t->tm_min,
t->tm_sec);
FILE* fp = fopen(TIME_FILENAME,“w”);
if(fp == nullptr)
{
printf(“打开文件(time.txt)失败\n”);
return ;
}
size_t sizeToWrite=strlen(timeStr) +1;
size_t ret = fwrite(timeStr,1,sizeToWrite,fp);
if(ret != sizeToWrite)
{
printf(“写入错误!\n”);
}
fclose(fp);
return;
}

int main()
{
std::thread t(fileThreadFunc);
if(t.joinable()) t.join();

FILE\* fp = fopen(TIME_FILENAME,"r");
if(fp == nullptr)
{
    printf("打开文件失败!\n");
    return -2;
}
char  buf[32] = {0};
int sizeRead = fread(buf,1,32,fp);
if(sizeRead == 0)
{
    printf("读取文件失败");
    fclose(fp);
    return -3;
}
printf("Current time is: %s.\n",buf);

fclose(fp);
return 0;

}



### 3.4.3 C++11 对整型变量原子操作的支持


C++11 提供了对整形变量原子操作的支持


即`std::atomic`这是一个模板类型



Defined in header
template< class T >
struct atomic;


例子



#include
#include
int main()
{
std::atomic value{1};
value++;//自增,原子操作
std::cout<<value<<std::endl;
}




**网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。**

**[需要这份系统化的资料的朋友,可以点击这里获取!](https://bbs.csdn.net/topics/618635766)**

**一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!**

例子



#include
#include
int main()
{
std::atomic value{1};
value++;//自增,原子操作
std::cout<<value<<std::endl;
}




**网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。**

**[需要这份系统化的资料的朋友,可以点击这里获取!](https://bbs.csdn.net/topics/618635766)**

**一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!**

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值