-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPassingArgs.cpp
More file actions
41 lines (33 loc) · 1021 Bytes
/
PassingArgs.cpp
File metadata and controls
41 lines (33 loc) · 1021 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**
* \file PassingArgs.cpp
* \brief Pass function ptr with args
*/
#include <StdStream/StdStream.h>
#include <StdTest/StdTest.h>
#include <Stl.h>
//--------------------------------------------------------------------------------------------------
void
worker(
const int x,
const std::string &str
)
{
std::cout << "[worker] Passed Number = " << x << std::endl;
std::cout << "[worker] Passed String = " << str << std::endl;
}
//--------------------------------------------------------------------------------------------------
int main(int, char **)
{
const int x = 10;
const std::string str = "Sample String";
std::thread t(worker, x, str);
t.join();
return EXIT_SUCCESS;
}
//--------------------------------------------------------------------------------------------------
#if OUTPUT
---------------------------------------------
[worker] Passed Number = 10
[worker] Passed String = Sample String
---------------------------------------------
#endif