CPSC 421 OOP Dispatch

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