错误C4430 - 对象 - 类

时间:2013-07-05 08:02:39

标签: c++ visual-studio-2010 mfc

我在另一个类中创建了一个类LCalculation的对象,

class LCalculation
{
    public:
        unsigned __int64 m_Amount_of_Numbers;
        [...]
};

现在我正在尝试使用它并面对这些错误。它与此对象声明有关。我只是不明白。任何人都可以帮忙吗?如果需要更多信息,请随时提问。



class CMFC_App_CalculationDlg : public CDialogEx
{
private:
    LCalculation m_LCalc;
};

  • 1> c:\ users \ admin \ documents \ visual studio 2010 \ projects \ Calc \ mfc_ap​​p_calculation \ mfc_ap​​p_calculationdlg.h(35):错误C2146:语法错误:缺少';'在标识符'm_LCalc'之前
  • 1> c:\ users \ admin \ documents \ visual studio 2010 \ projects \ Calc \ mfc_ap​​p_calculation \ mfc_ap​​p_calculationdlg.h(35):错误C4430:缺少类型说明符 - 假定为int。注意:C ++不支持default-int
  • 1> c:\ users \ admin \ documents \ visual studio 2010 \ projects \ Calc \ mfc_ap​​p_calculation \ mfc_ap​​p_calculationdlg.h(35):错误C4430:缺少类型说明符 - 假定为int。注意:C ++不支持default-int

void CMFC_App_Calculation::OnEnChangeEdit2()
{
    m_LCalc.m_Amount_of_Numbers = UpdateData(TRUE);
}

  • 1> c:\ users \ admin \ documents \ visual studio 2010 \ projects \ Calc \ mfc_ap​​p_calculation \ mfc_ap​​p_calculationdlg.cpp(191):错误C2065:'m_LCalc':未声明的标识符
  • 1> c:\ users \ admin \ documents \ visual studio 2010 \ projects \ Calc \ mfc_ap​​p_calculation \ mfc_ap​​p_calculationdlg.cpp(191):错误C2228:'。m_Amount_of_Numbers'左边必须有class / struct / union
    • type是''unknown-type''





得到它,我是新来的。 @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);
};

1 个答案:

答案 0 :(得分:2)

在你的第二个标题(MFC_App_CalculationDlg.h)中,你忘了#include "LCalculation.h"或者你没有命名第三个标题。

而BTW,UpdateData返回BOOL,而不是amount_of_numbers。您应该阅读UpdateData和DoDataExchange的文档,以更好地了解MFC如何从对话框控件进行数据交换。