1 Star 0 Fork 0

godeyer / clang

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
thp2.cpp 1.12 KB
一键复制 编辑 原始数据 按行查看 历史
godeyer 提交于 2024-01-19 14:10 . 初次提交
#include<iostream>
#include<thread>
#include<stdio.h>
#include<unistd.h>
#include<sys/types.h>
#include<sys/stat.h>
#include<unistd.h>
using namespace std;
class TA{
public:
int &subi;
TA(int &aa):subi(aa){};
// ~TA(){
// subi = 1;
// }
void operator()(){
cout<<"sub begin..."<<subi<<endl;
// this_thread::sleep_for(chrono::microseconds(200));
for (size_t i = 0; i < 10; i++)
{
cout<<"sub开始循环 "<<i <<" = "<<subi<<endl;
// sleep(1);
this_thread::sleep_for(chrono::microseconds(10));
if(i==3) subi= 3;
}
cout<<"sub end..."<<subi<<endl;
}
};
int main(int argc,char **argv){
int mi = 4;
TA ta(mi);
cout<<"main first ta ="<<ta.subi<<endl;
// ta();
thread td(ta);
cout<<"main begin..."<<mi<<endl;
for (size_t ii = 0; ii < 10; ii++)
{
cout<<"main开始循环 "<<ii<<" = "<<mi<<endl;
this_thread::sleep_for(chrono::microseconds(10));
}
getchar();
// if(td.joinable())td.join();
cout<<"main end ta ="<<ta.subi<<endl;
return 0;
}
1
https://gitee.com/zzzman/clang.git
git@gitee.com:zzzman/clang.git
zzzman
clang
clang
master

搜索帮助