定义不一定在相应的cpp里

 

看以下代码:

CDialog.h

//

#ifndef CDialog_H_
#define CDialog_H_

void Set();


#endif

//CDialog.cpp


#include "CDialog.h"

int  fun( )

{
 Set();
 return 0;
}

 

// CMain.cpp

void Set( )
{
 

}

 

 

以上代码可以通过

就是说 定义不一定在相应的cpp里

你可能感兴趣的:(fun)