【问题标题】:Error: aggregate has incomplete type and cannot be defined错误:聚合类型不完整,无法定义
【发布时间】:2021-06-24 17:38:33
【问题描述】:

我正在为银行编写一个程序,编译时出现此错误。 这是我的全部代码,因为我无法在此处共享更多代码,它位于粘贴箱中。 My code

我没有包括我的整个代码,而是我认为负责的部分:

#include<iostream>
#include<string>
#include<limits>
#include<fstream>
#include<iomanip>

using std::ios_base;
using std::ostringstream;
using std::ios;
using std::fstream;
using std::ifstream;
using std::ofstream;
using std::stoi;
using std::to_string;
using std::string;
using std::cout;
using std::cin;
using std::endl;
using std::getline;

class yourbankaccount
{
private:
    string accountNumber;
    // Name of the customer.
    string name;
    // Date of birth
    int day;
    int month;
    int year;
    // Get Age
    int age;
    // Get Gender
    string gender;
    long accountBalance = 0;
public:
    friend int getInt(string info, int length);
    friend string getStr(string info, int length);
    yourbankaccount(){}
    void setAccountNumber(string number){
        accountNumber = number;
    }
    string shareAccountNumber(){
        return accountNumber;
    }
    // Get date
    void getDate(){
        int d, m, y;
        cout << "Now please enter your Date Of Birth(DD/MM/YYYY):"<<endl;
        d = getInt("Day(DD)", 2);
        m = getInt("Month(MM)", 2);
        y = getInt("Year(YYYY)", 4);
        day = d; month = m; year = y;
    }
    // Return Date
    string sendDate(){
        string Date = to_string(day) + "/" + to_string(month) + "/" + to_string(year);
        return Date;
    }
    // Method to add details.
    void getCustomerDetails(){
        bool gotGen = false;
        string n; int a; unsigned int p; char g;
        cout << "Please fill in the following details: ";
        name = getStr("Name of Account holder", 45);
        cout << "Enter your birthday in given format: ";
        getDate();
        age = getInt("your Age", 2);
        do
        {
            gender = getStr("your Gender(only M for Male, F for Female, O for Other)", 1);
            if (stringToUpper(gender)  != "M" || 
                stringToUpper(gender) != "F" || 
                stringToUpper(gender) != "O"){
                    "Please enter only M or F or O!";
            }else{
                gotGen = true;
            }
        } while (gotGen);
    } 
    string shareName(){
        return name;
    }
    string shareDOB(){
        return sendDate();
    }
    int shareAge(){
        return age;
    }
    string shareGender(){
        return gender;
    }
    void setAccountBalance(long bal){
        accountBalance = bal;
    }
    long shareAccountBalance(){
        return accountBalance;
    }
    ~yourbankaccount(){}
};

我在这里声明对象:

void createAccount(){
    ofstream addAccount;
    yourbankaccount Account;
    cout << "Thank You for Choosing Your Bank.";
    cout << "Please provide The folling details.";
    Account.setAccountNumber(calNewAccNumber());
    Account.getCustomerDetails();
    Account.setAccountBalance(500);
    int pin = getInt("a pin for the account", 4);
    string file ="accounts/open.csv";
    addAccount.open(file, ios::out | ios::app);
    if (addAccount.is_open())
    {
        addAccount << Account.shareAccountNumber()
        << "," << pin << "," << "\"" << Account.shareName() << "\"" << "," 
        << Account.shareDOB() <<"," << Account.shareAge()
        << "," << Account.shareGender() << Account.shareAccountBalance()<<"\n";
    }

    cout << "Your Account has been created Sucessfully." <<
            "Please note your number as it will be required for logging in\n";
    cout << "Account number is:" << Account.shareAccountNumber() << "\n";
}

编译时出现这个错误:

> Executing task: C/C++: g++.exe build active file ver(1) <

Starting build...
D:\Programs\mingw_w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\bin\g++.exe -g D:\BSC_IT\sem_2\OOPS\CA2\YourBank\yourbank.cpp -o 
D:\BSC_IT\sem_2\OOPS\CA2\YourBank\yourbank.exe
```
D:\BSC_IT\sem_2\OOPS\CA2\YourBank\yourbank.cpp: In function 'void createAccount()':
D:\BSC_IT\sem_2\OOPS\CA2\YourBank\yourbank.cpp:139:21: error: aggregate 'yourbankaccount Account' has incomplete type and cannot be defined
    yourbankaccount Account;
                     ^~~~~~~
```
Build finished with error(s).
The terminal process terminated with exit code: -1.

>Terminal will be reused by tasks, press any key to close it.

【问题讨论】:

  • 请在此处按要求发布minimal reproducible example
  • 可能是您没有将定义yourbankaccount 的标头包含在尝试使用它的源文件中。
  • 我已经在同一个文件中定义了
  • 已定义或声明?请创建一个正确的minimal reproducible example。一个好的是我们可以复制和构建自己以复制您询问的确切错误(但仅此而已)。请记住 minimal 部分,您当前显示的大部分代码与问题无关。
  • 请不要发布代码链接。相反,发布minimal reproducible example。做一个,拿你的整个代码,开始扔掉不相关的部分。每次,验证您是否仍然收到相同的错误。一旦你不能再扔掉任何东西,你就有一个minimal reproducible example

标签: c++ c++11 incomplete-type


【解决方案1】:

您的班级类型是incomplete。你需要define你的类之前你可以声明该类的对象。 forward declare班级是不够的。

【讨论】:

    猜你喜欢
    • 2020-11-25
    • 2013-07-21
    • 1970-01-01
    • 2014-05-20
    • 2020-02-21
    • 1970-01-01
    • 2012-07-29
    • 1970-01-01
    相关资源
    最近更新 更多