Created
June 7, 2022 11:39
-
-
Save lll-phill-lll/ab6f77f098392fbf9f43dd0e2d0bf7f3 to your computer and use it in GitHub Desktop.
callable.cpp example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <thread> | |
struct A { | |
void call_A() { | |
std::cout << "val: " << val << std::endl; | |
} | |
int val; | |
}; | |
struct B : public A { | |
void call_B() { | |
std::cout << "B 2 is called" << std::endl; | |
} | |
}; | |
int main() { | |
// call method of B | |
{ | |
B b; | |
std::thread t_b(&B::call_B, &b); | |
t_b.join(); | |
// Printed | |
// B 2 is called | |
} | |
// call method of A | |
{ | |
B b; | |
b.val = 42; | |
std::thread t_b(&B::call_A, &b); | |
t_b.join(); | |
// Printed: | |
// val: 42 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment