Skip to content

Instantly share code, notes, and snippets.

@eyelash
Created March 3, 2018 19:20
Show Gist options
  • Select an option

  • Save eyelash/08f3170aec4e34c4ed00756a67d8a3c1 to your computer and use it in GitHub Desktop.

Select an option

Save eyelash/08f3170aec4e34c4ed00756a67d8a3c1 to your computer and use it in GitHub Desktop.
#include <cstdio>
class A {
public:
A() {
method();
}
virtual void method() {
printf("A\n");
}
};
class B: public A {
public:
void method() override {
printf("B\n");
}
};
int main() {
B b;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment