c++编的计算器的一些代码,能帮忙解释一下
BOOL CCalculatorDlg::OnInitDialog(){ 。。。。。。
// TODO: Add extra initialization here
m_1.AutoLoad(IDC_1,this);
m_2.AutoLoad(IDC_2,this);
m_3.AutoLoad(IDC_3,this);
m_4.AutoLoad(IDC_4,this);
m_5.AutoLoad(IDC_5,this);
m_6.AutoLoad(IDC_6,this);
m_7.AutoLoad(IDC_7,this);
m_8.AutoLoad(IDC_8,this);
m_9.AutoLoad(IDC_9,this);
m_0.AutoLoad(IDC_0,this);
m_back.AutoLoad(IDC_BACK,this);
m_ce.AutoLoad(IDC_CE,this);
m_c.AutoLoad(IDC_C,this);
m_divide.AutoLoad(IDC_DIVIDE,this);
m_sqrt.AutoLoad(IDC_SQRT,this);
m_chen.AutoLoad(IDC_CHEN,this);
m_percent.AutoLoad(IDC_PERCENT,this);
m_reduce.AutoLoad(IDC_REDUCE,this);
m_daoshu.AutoLoad(IDC_DAOSHU,this);
m_sign.AutoLoad(IDC_SIGN,this);
m_add.AutoLoad(IDC_ADD,this);
m_equal.AutoLoad(IDC_EQUAL,this);
m_point.AutoLoad(IDC_POINT,this);
return TRUE; // return TRUE unless you set the focus to a control
}
其中IDC_1到9都是对1到9个按键,那么AutoLoad (,this); 这个符号是什么意思???
下面的代码,能帮忙解释一下思想,和一些函数的含义么?