错误:聚合的类型不完整,无法定义



我正在为bank编写一个程序,在编译它时遇到了这个错误。这是我的全部代码,因为我无法在这里分享更多的代码——它在粘贴箱中。我的代码

我没有包括我的全部代码,但我认为有责任的部分:

#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 inn";
cout << "Account number is:" << Account.shareAccountNumber() << "n";
}

当我编译它时,我得到了这个错误:

> Executing task: C/C++: g++.exe build active file ver(1) <
Starting build...
D:Programsmingw_w64x86_64-8.1.0-posix-seh-rt_v6-rev0mingw64bing++.exe -g D:BSC_ITsem_2OOPSCA2YourBankyourbank.cpp -o 
D:BSC_ITsem_2OOPSCA2YourBankyourbank.exe
```
D:BSC_ITsem_2OOPSCA2YourBankyourbank.cpp: In function 'void createAccount()':
D:BSC_ITsem_2OOPSCA2YourBankyourbank.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.

您的类类型不完整。您需要定义您的类,然后才能声明该类的对象。仅仅转发声明类是不够的。

最新更新