What is CMutex? How can we use it? What are frames and CFrameWnd?a.)What is CMutex? How can we use it?
CMutex is a synchronization class which uses synchronization object named as mutex. It allows multiple program thread can share the same resource by taking turns. At the starting of the program it creates a mutex at beginning and then a system gives a unique ID or name for it. After that, any thread which needs the resource can use the mutex to lock the resource. For example access of a file. To use CMutex construct its object when it is needed to be accessed. Give the name of mutex and to the application will own it. You can access mutex when constructor returns again to the start. When you are done accessing the controlled resource then call CSyncObject::Unlock.
b.) What are frames and CFrameWnd?
Frames contain view windows. Frame windows allow the user the capability to use status bars, toolbars, and splitters.
CFrameWnd contains the implementation to perform the function of a main window as wells as it keeps track of currently active view that is independent of Windows active window or input focus. It also provides the functionality of a Windows single document interface (SDI) overlapped. This is contained in CFrameWnd class.
For example: class CFrameWnd : public CWnd
|