Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Windowsプログラミングでは、これはどういう意味ですか?
MSG msg = { };
MSG は、Windows SDK ヘッダーで宣言された構造体であり、Windows メッセージを格納します。
ステートメントの= { }一部は初期化式で、MSG 構造体の値を設定します。中かっこの間に何も含まれていないため、構造体のすべてのメンバーが 0 に設定されます。これは、変数をゼロで初期化する簡単な方法です。
= { }