CWinApp::m_pszAppName

指定应用程序的名称。

LPCTSTR m_pszAppName;

备注

应用程序名称可能来自该参数传递给 CWinApp 构造函数,或者,如果未指定,则为 AFX_IDS_APP_TITLEID的资源字符串。 如果应用程序名称在资源中未找到,它来自程序的.EXE文件名。

返回由全局函数 AfxGetAppNamem_pszAppName 是类型 **const char***的公共变量。

备注

如果赋值。m_pszAppName,在堆必须动态分配它。CWinApp 调用析构函数 free( )与此指针。您许多若要使用 _tcsdup( ) 运行库函数执行分配。另外,请释放内存与当前指针在分配新值之前。例如:

//First free the string allocated by MFC at CWinApp startup.
//The string is allocated before InitInstance is called.
free((void*)m_pszAppName);
//Change the name of the application file.
//The CWinApp destructor will free the memory.
m_pszAppName = _tcsdup(_T("c:\\somedir\\myapp.exe"));

示例

CWnd* pWnd = AfxGetMainWnd();
// Set pWnd to some CWnd object whose window has already
// been created.

// The following call to CWnd::MessageBox uses the application
// title as the message box caption.
pWnd->MessageBox(_T("Some message"), AfxGetApp()->m_pszAppName);

// A more direct way to get the application title is to 
// call AfxGetAppName:
pWnd->MessageBox(_T("Some message"), AfxGetAppName());

// An easier way to display a message box using the application
// title as the message box caption is to call AfxMessageBox:
AfxMessageBox(_T("Some message"));

要求

Header: afxwin.h

请参见

参考

CWinApp选件类

层次结构图