CPSC 421 OOP Dispatch
Across
- 2. A class that _____ from a class with virtual methods also has a vtable
- 4. The first part of the vtable
- 6. C++ uses static dispatch for _____
- 8. The term "vtable" is short for _____ _____
- 10. A vtable is created for every class that has _____ _____
- 11. C++ uses static dispatch for _____ methods
Down
- 1. C++ uses dynamic dispatch for virtual methods via a _____
- 3. Selecting which implementation of a polymorphic operation (method or function) to call at run time is _____ _____
- 5. C++ uses dynamic dispatch for virtual methods via a _____
- 7. Selecting which implementation of an operation (method or function) to call at compile time is _____ _____
- 9. C++ uses static dispatch for _____-virtual methods