使用类的运算符重载(可调用对象)作为线程入口函数

使用类的运算符重载(可调用对象)作为线程入口函数,第1张

使用类的运算符重载(可调用对象)作为线程入口函数
#include 
#include 
using namespace std;
class A {
public:
	A(int a) {
		std::cout << "构造函数执行了" << "this = " << this << " threadid = " << std::this_thread::get_id() << std::endl;
	}
	A(const A& a) {
		std::cout << "拷贝构造函数执行了" << "this = " << this << " threadid = " << std::this_thread::get_id() << std::endl;
	}
	~A() {
		std::cout << "析构函数执行了" << "this = " << this << " threadid = " << std::this_thread::get_id() << std::endl;
	}
public:
	void operator()(int ab)
	{
		std::cout << ab << std::endl;
		std::cout << "子线程ID = " << std::this_thread::get_id() <
						

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5718406.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-18
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存