gpt4 book ai didi

C++:数组,初始值设定项无法确定的大小

转载 作者:太空宇宙 更新时间:2023-11-04 12:11:52 26 4
gpt4 key购买 nike

我尝试按照书中的示例编写消息映射。

这是我的代码:

typedef struct MsgMapEntry_t {  
UINT nMessage;
LONG (*pFunc)(HWND, UINT, WPARAM, LPARAM);
} MsgMapEntry_t;

// Skip Lines

LRESULT CALLBACK CyauShellWndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
static MsgMapEntry_t OnMsgMap[]=
(
// TODO Register MsgFunc here
WM_DESTROY, ExitApplication
);

编译,编译器报错:

D:\Projects\cyau\cyau_pre3_20120225\cyau_main.cpp:116:15: warning: left operand of comma operator has no effect [-Wunused-value]
D:\Projects\cyau\cyau_pre3_20120225\cyau_main.cpp:117:2: error: initializer fails to determine size of 'OnMsgMap'

所以,请问如何更正。

最佳答案

数组初始化器使用花括号 { ... } 而不是圆括号 ( ... )

关于C++:数组,初始值设定项无法确定的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9443498/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com