CRuntimeClass::FromName
既知の名前が付けられた CRuntimeClass 構造体を取得します。
static CRuntimeClass* PASCAL FromName(
LPCSTR lpszClassName
);
static CRuntimeClass* PASCAL FromName(
LPCWSTR lpszClassName
);
パラメーター
- lpszClassName
CObject から派生したクラスの既知の名前。
戻り値
lpszClassName で渡された名前に対応する CRuntimeClass オブジェクトへのポインター。一致するクラス名が見つからない場合は NULL を返します。
使用例
// This example creates an object if CAge is defined.
CRuntimeClass* pClass = CRuntimeClass::FromName(_T("CAge"));
if (pClass == NULL)
{
// not found, display a warning for diagnostic purposes
AfxMessageBox(_T("Warning: CMyClass not defined"));
return NULL;
}
// attempt to create the object with the found CRuntimeClass
CObject* pObject = pClass->CreateObject();
必要条件
ヘッダー : afx.h