Multiple choice technology programming languages

The framework uses ____________ to connect messages and commands to their handler functions.

  1. MapHandler

  2. CommandMaps

  3. HandleCommands

  4. Message maps

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

MFC's message map mechanism connects windows messages and command IDs to member functions using macros like BEGIN_MESSAGE_MAP and ON_COMMAND, avoiding the need for a giant switch statement.