How to pass arguments to a thread in C++

1 Answer

0 votes
#include <iostream>
#include <thread>
#include <string>

using std::cout;
using std::endl;

void threadFunction(int n, std::string s)
{
	cout << n << endl;
	cout << s << endl;
}
int main()
{
	int n = 10;
	std::string s = "C++ Programming";

	std::thread obj(threadFunction, n, s);

	obj.join();

	return 0;
}

/*
run:

10
C++ Programming

*/

 



answered Feb 6, 2018 by avibootz
...