我在另一个类中创建了一个类LCalculation的对象,
class LCalculation
{
public:
unsigned __int64 m_Amount_of_Numbers;
[...]
};
现在我正在尝试使用它并面对这些错误。它与此对象声明有关。我只是不明白。任何人都可以帮忙吗?如果需要更多信息,请随时提问。
class CMFC_App_CalculationDlg : public CDialogEx
{
private:
LCalculation m_LCalc;
};
void CMFC_App_Calculation::OnEnChangeEdit2()
{
m_LCalc.m_Amount_of_Numbers = UpdateData(TRUE);
}
得到它,我是新来的。 @Joachim Pileborg。感谢。
第一个标题:
// MFC_App_Calculation.h : main header file for the PROJECT_NAME application
//
#pragma once
#ifndef __AFXWIN_H__
#error "include 'stdafx.h' before including this file for PCH"
#endif
#include "resource.h" // main symbols
// CMFC_App_CalculationApp:
// See MFC_App_Calculation.cpp for the implementation of this class
//
class CMFC_App_CalculationApp : public CWinApp
{
public:
CMFC_App_CalculationApp();
// Overrides
public:
virtual BOOL InitInstance();
// Implementation
DECLARE_MESSAGE_MAP()
};
extern CMFC_App_CalculationApp theApp;
第二个标题:
// MFC_App_CalculationDlg.h : header file
//
#pragma once
// CMFC_App_CalculationDlg dialog
class CMFC_App_CalculationDlg : public CDialogEx
{
// Construction
public:
CMFC_App_CalculationDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
enum { IDD = IDD_MFC_APP_CALCULATION_DIALOG };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Implementation
protected:
HICON m_hIcon;
// Generated message map functions
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnBnClickedRadio1();
afx_msg void OnBnClickedRadio2();
private:
LCalculation m_LCalc;
public:
afx_msg void OnEnChangeEdit2();
};
第三个标题:
#pragma once
/*Comments*/
class LCalculation
{
public:
unsigned __int64 m_Amount_of_Numbers;
unsigned __int64 m_Amount_of_Guesses;
unsigned __int64 m_Probability;
LCalculation ();
bool m_bEqual;
void CalculateThis ();
void SZ_true ();
void SZ_false ();
void NUMBERequals (unsigned __int64 NUMBERS, unsigned __int64 GUESSES, unsigned __int16 IDENTIFIER);
};
答案 0 :(得分:2)
在你的第二个标题(MFC_App_CalculationDlg.h)中,你忘了#include "LCalculation.h"
或者你没有命名第三个标题。
而BTW,UpdateData返回BOOL,而不是amount_of_numbers。您应该阅读UpdateData和DoDataExchange的文档,以更好地了解MFC如何从对话框控件进行数据交换。