The role of GetParent () in MFC

Source: Internet
Author: User

Translated from https://bbs.csdn.net/topics/390540690

1. If you create a non-modal window, choose one of the following two practices.
(1) Chatting.m_lpdlg = new Cchatdialog;
Chatting.m_lpdlg->create (Idc_dialog_chat,this);
Chatting.m_lpdlg->showwindow (Sw_show);

(2) Chatting.m_lpdlg = new Cchatdialog (this);
Chatting.m_lpdlg->showwindow (Sw_show);

A window is typically created with a parameter constructor.
You create two windows, you can only use one, and there will be resource leaks.
Do nothing unless you have a single-argument constructor.
Otherwise
Chatting.m_lpdlg = new Cchatdialog (this);
Chatting.m_lpdlg->create (Idc_dialog_chat,this);
The code is equivalent to
Chatting.m_lpdlg = new Cchatdialog ();
Chatting.m_lpdlg->create (Idc_dialog_chat,this);
Chatting.m_lpdlg->create (Idc_dialog_chat,this);
The CREATE function calls two times, naturally with the second call, however, the resource leaks, can not be solved.

2, in Cchatdialog inside GetParent () obtained is the creation of the pass in the This

The role of GetParent () in MFC (RPM)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.