- 论坛徽章:
- 0
|
本来想用结构指针获取某处已经分配了内存的块数据.
结果发现返回的指针为空, 百思不得其解, 特求助.
程序如下:typedef struct Blk
{
int aa;
int dd;
}BLOCK, *pBLOCK;
pBLOCK blk = (pBLOCK)malloc(sizeof(BLOCK));
int test(BLOCK *out)
{
out = blk;
printf("\n source pointer %p", out);
printf("\n 0x%x", out->aa);
printf("\n 0x%x", out->dd);
return 0;
}
// 唯一的应用程序对象
CWinApp theApp;
using namespace std;
int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
{
int nRetCode = 0;
// 初始化 MFC 并在失败时显示错误
if (!AfxWinInit(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), 0))
{
// TODO: 更改错误代码以符合您的需要
_tprintf(_T("错误: MFC 初始化失败\n"));
nRetCode = 1;
}
blk->aa =0x1234;
//blk->bb = L"first";
//blk->cc = new CString(L"second");
blk->dd = 0x4321;
pBLOCK out=NULL;
test(out);
printf("\n when out, pointer:%p", out);
printf("\n gloabl pointer:%p", blk);
return nRetCode;
}
|
运行结果:
source pointer 003AF8B8
0x1234
0x4321
when out, pointer:00000000
gloabl pointer:003AF8B8请按任意键继续. . . |
|