Skip to content

Instantly share code, notes, and snippets.

@lll-phill-lll
Created June 7, 2022 11:39
Show Gist options
  • Save lll-phill-lll/ab6f77f098392fbf9f43dd0e2d0bf7f3 to your computer and use it in GitHub Desktop.
Save lll-phill-lll/ab6f77f098392fbf9f43dd0e2d0bf7f3 to your computer and use it in GitHub Desktop.
callable.cpp example
#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