gpt4 book ai didi

c++ - 简单类的 LNK2019 错误

转载 作者:行者123 更新时间:2023-11-30 03:52:18 26 4
gpt4 key购买 nike

<分区>

(抱歉,我知道有很多很多关于此错误的帖子,但似乎没有一个像我尝试构建的程序一样简单。我很抱歉,但我对 C++ 的了解还不够找出如何利用其他问题对我有利。)

我在为我的 C++ 类(class)定义和初始化一个类的基础上构建一个简单的计算器程序。我认为我快完成了,但我一直收到错误消息:

Driver.obj : error LNK2019: unresolved external symbol "public: __thiscall >Calculator::Calculator(void)" (??0Calculator@@QAE@XZ) referenced in function >_main

我认为这与我的默认构造函数有关,但有人可以帮我吗?我很感激我能得到的任何帮助!

代码如下:

计算器.cpp

#include <string>
#include <iostream>
#include "Calculator.h"

using namespace std;

void Calculator::SetOperation(char oper, double opa, double opb)
{
Calculator::operation = oper;
Calculator::op1 = opa;
Calculator::op2 = opb;
}

void Calculator::Calc()
{
switch(operation)
{
case ('+'):
answer = op1 + op2;
result = "Your operation is addition: " + to_string(op1) + " + " + to_string(op2) + " = " + to_string(answer) + '\n';
break;

case ('-'):
answer = op1 - op2;
result = "Your operation is subtraction: " + to_string(op1) + " - " + to_string(op2) + " = " + to_string(answer) + '\n';
break;

case ('*'):
answer = op1 * op2;
result = "Your operation is multiplication: " + to_string(op1) + " * " + to_string(op2) + " = " + to_string(answer) + '\n';
break;

case ('/'):
answer = op1 / op2;
result = "Your operation is division: " + to_string(op1) + " / " + to_string(op2) + " = " + to_string(answer) + '\n';
break;
}
}

string Calculator::GetResults()
{
return result;
}

计算器.h

#ifndef _CALCULATOR_H_
#define _CALCULATOR_H_

#include <string>

using namespace std;

class Calculator
{
private:
char operation;
double op1;
double op2;
double answer;
string result;
void Calc();
public:
Calculator();
void SetOperation(char oper, double opa, double opb);
string GetResults();
};

#endif

驱动.cpp

//

#include <string>
#include <iostream>
#include "Calculator.h"
#include "Functions.h"

using namespace std;

int main()
{
char op;
double numA, numB;
string ing, correct("no"), equals, another("no");
Header();

Calculator MyCalc;

do
{
do
{
cout<< "Enter the number of an operator from the following:\n\n"
<< "Addition (+): 1 Subtraction (-): 2\n"
<< "Multiplication (*): 3 Division (/): 4\n\n";
cin >> op;
cin.ignore();
switch(op)
{
case (1):
op = '+';
cout<< "\n\nLet's do some addition!\n\n";
ing = "adding";
break;
case (2):
op = '-';
cout<< "\n\nLet's do some subtraction!\n\n";
ing = "subtracting";
break;
case (3):
op = '*';
cout<< "\n\nLet's do some multiplication!\n\n";
ing = "multiplying";
break;
case (4):
op = '/';
cout<< "\n\nLet's do some division!\n\n";
ing = "dividing";
break;
}

cout<< "Please enter your first operand: ";
cin >> numA;
cin.ignore();

cout<< "\n\nPlease enter your second operand: ";
cin >> numB;
cin.ignore();

if (op == '/' && numB == 0)
{
cout<< "!!!!! ILLEGAL OPERATION\n!!!!! Can't divide by zero!";
correct = "no";
}
else
{
cout<< "We'll be " << ing << ' ' << numA << " and " << numB << ", correct?\n<yes/no>>> ";
getline(cin, correct);
}

} while(correct != "yes");

MyCalc.SetOperation(op, numA, numB);
equals = MyCalc.GetResults();
cout<< "\n\n" << equals;

cout<< "\n\n\nWould you like to perform another calculation?\n<yes/no>>>";
} while (another != "no");
}

函数.h

#ifndef _FUNCTIONS_H_
#define _FUNCTIONS_H_

void Header();

#endif

函数.cpp

#include <string>
#include <iostream>
#include "Functions.h"

using namespace std;

void Header()
{
do
{
cout<< "blah blah blah";
} while(cin.get() != '\n');
}

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