的關鍵我有Windows的一個std ::地圖,例如:C++ - 地圖 - 獲得這個價值
class MyWindow
{
public:
MyWindow()
{
CreateWindow(...);
}
... // rest of code
}
LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
switch (message)
{
// code
}
}
std::map<string, MyWindow> windows;
而且WndProc的功能,我想知道哪個窗口是現在在函數內部,我怎樣才能得到這個窗口的關鍵。
迭代時,windows-> first? – Rapptz
我在WndProc函數裏面我想知道哪個窗口現在在函數中 – user1544067
我不明白你爲什麼要使用'std :: map'。 – Rapptz