gpt4 book ai didi

C++未定义对类构造函数的引用

转载 作者:行者123 更新时间:2023-11-28 00:14:38 26 4
gpt4 key购买 nike

//Header FILE:
#ifndef BMI_H_INCLUDED
#define BMI_H_INCLUDED

#include<iostream>
#include<string>
using namespace std;
class BMI{
public:
//default constructer
BMI();
//overloaded
BMI(string,int,double);
private:
string newName;
int newHeight;
double newWeight;
};


#endif // BMI_H_INCLUDED
//Implementation file:
#include "BMI.h"
BMI ::BMI(){
newHeight=0;
newWeight=0.0;

}
BMI::BMI(string name,intheight,double weight){
newName=name;
newHeight=height;
newWeight=weight;
}
//Main file:
#include <iostream>
#include<string>
#include "BMI.h"
using namespace std;

int main()
{
string name;
int height;
double weight;
cout<<"Name:\n";
getline(cin,name);
cout<<"Height(Inches):\n";
cin>>height;
cout<<"Weight(Pounds):";
cin>>weight;
BMI person_1("John",89,90.0);
//I get the error on the above line error is //undefinedreferenceto`BMI::BMI(std::string, int, double)'



}

有谁知道为什么这种情况总是发生在我身上?

我使用 Codeblocks,如果是的话,我该如何解决这个问题并防止它再次发生。

每次我将类分成头文件和 cpp 文件时都会发生这种情况。这只是我的程序因此而无法编译的许多次之一。

最佳答案

BMI::BMI(string name,intheight,double weight){ 中,int 和 height 之间没有空格。

这会导致 BMI person_1("John",89,90.0); 引用一个不存在的构造函数。

关于C++未定义对类构造函数的引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31147121/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com