AfxGetApp()返回一个指向你的应用程序的指针。程序开头要用,你也可用。

解决方案 »

  1.   

    MSDN:
    ASSERT_VALID( pObject )ParameterspObjectSpecifies an object of a class derived from CObject that has an overriding version of the AssertValid member function.ResUse to test your assumptions about the validity of an object’s internal state. ASSERT_VALID calls the AssertValid member function of the object passed as its argument. In the Release version of MFC, ASSERT_VALID does nothing. In the Debug version, it validates the pointer, checks against NULL, and calls the object’s own AssertValid member functions. If any of these tests fails, this displays an alert message in the same manner as ASSERT.Note   This function is available only in the Debug version of MFC.For more information and examples, seeMFC Debugging Support in Visual C++ Programmer’s Guide.Example// Assure that pMyObject is a valid pointer to an
    // object derived from CObject.
    ASSERT_VALID(pMyObject);