吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1070|回复: 0
收起左侧

[讨论] function与bind基本用法

[复制链接]
古月不傲 发表于 2021-1-11 19:11
本帖最后由 古月不傲 于 2021-1-11 19:13 编辑

[C++] 纯文本查看 复制代码
#include <iostream>
#include <functional>
#include <pthread.h>

class Thread
{
public:
	Thread(const std::function<void()> &cb) : m_cb(cb), m_pid(0)
	{

	}
public:
	void start()
	{
		pthread_create(&m_pid, nullptr, run, this);
	}
	void join()
	{
		pthread_join(m_pid, nullptr);
	}
private:
	static void *run(void *arg)
	{
		Thread *pThis = static_cast<Thread *>(arg);
		pThis->m_cb();

		return nullptr;
	}
private:
	pthread_t 				m_pid;
	std::function<void()> 	m_cb;
};

void test1()
{
	std::cout << "test1" << std::endl;
}

void test2(int a)
{
	std::cout << "test2" << std::endl;
}

void test3(int a, int b)
{
	std::cout << "test3" << std::endl;
}

int main(void)
{
	Thread t1(test1);
	Thread t2(std::bind(test2, 3));
	Thread t3(std::bind(test3, 5, 6));

	t1.start();
	t1.join();
	t2.start();
	t2.join();
	t3.start();
	t3.join();

	return 0;
}

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-26 04:29

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表