gpt4 book ai didi

c++ - 试图从头文件中的类调用函数,但调试无法识别类或函数

转载 作者:太空宇宙 更新时间:2023-11-04 12:45:23 25 4
gpt4 key购买 nike

好的...所以,我正在尝试通过使用它来学习 C++,并在此过程中提出任务。我为自己制定的一项任务是制作一个类似于“通用计算器”的程序,基本上是一个可以询问“你想做什么?”的计算器。如果用户输入“计算器”,它将运行我已经制作的计算器应用程序。但是我想制作程序,以便它使用头文件来存储我所有的函数。为此,我相当确定我需要使用类女巫很好,我只是不知道如何使用类。我已经将我的计算器程序导入到我的通用计算器头文件中,我认为我做对了,因为在调试中没有任何错误,并且任何东西下面都没有任何红色或绿色的波浪线。通用计算器 CPP 文件中的内容也是如此。

因此,我的问题在于我无法编译和运行我的代码。编译时出现两个错误

error C2653: 'calculator': is not a class or namespace name

error C2065: 'CalculatorApp': undeclared identifier

对此进行调查,似乎“#include 头文件”中存在一些问题。当我在主 CPP 文件中注释“#include”或类似内容时,我在调试中遇到了类似的问题:

error C2065: 'cout': undeclared identifier

error C2065: 'cin': undeclared identifier

但请注意,当我执行此操作时,实际的“cin”和“cout”函数(命令?idk 叫什么)下面没有红色波浪线。它就像调试错过了“#include Header file”的备忘录并且正在以不同的方式读取代码。

万能计算器V1.0.CPP

// Universal Calculator V1.0.cpp : Defines the entry point for the console application.
//
#include "Universal Calculator.h"
#include "stdafx.h"
#include <string>
#include <iostream>
#include <Windows.h>

using namespace std;

int main()
{
string task;
cout << "What would you like to do? ";
cin >> task;
if (task == "calculator")
{
calculator::CalculatorApp;
}
Sleep(3000);
system("CLS");
return main();
}

通用计算器.h 头文件:

#ifndef UNIVERSAL CALCULATOR_h
#define UNIVERSAL CALCULATOR_h

#include "stdafx.h"
#include <string>
#include <iostream>
#include <Windows.h>

using namespace std;

class calculator
{
public:

float FirstNumber;
float SecondNumber;
float answer;

void Add()
{
cout << "What is your first number? ";
cin >> FirstNumber;

cout << "What is your second number? ";
cin >> SecondNumber;

answer = FirstNumber + SecondNumber;
cout << "The answer is: " << answer << endl;
}

void Subtract()
{
cout << "What is your first number? ";
cin >> FirstNumber;

cout << "What is your second number? ";
cin >> SecondNumber;

answer = FirstNumber - SecondNumber;
cout << "The answer is: " << answer << endl;
}

void Multiply()
{
cout << "What is your first number? ";
cin >> FirstNumber;

cout << "What is your second number? ";
cin >> SecondNumber;

answer = FirstNumber * SecondNumber;
cout << "The answer is: " << answer << endl;
}

void Divide()
{
cout << "What is your first number? ";
cin >> FirstNumber;

cout << "What is your second number? ";
cin >> SecondNumber;

answer = FirstNumber / SecondNumber;
cout << "The answer is: " << answer << endl;
}
void CalculatorApp()
{

int Calculator();
{
int Operation;
cout << "Bode's Calculator V2.1" << endl;
cout << "What is the operation? Add[1], Subtract[2], Multiply[3] or Divide[4]? ";
cin >> Operation;

switch (Operation)
{
case 1:
Add();
break;
case 2:
Subtract();
break;
case 3:
Multiply();
break;
case 4:
Divide();
break;
}
}
}

};
#endif

我知道这篇文章已经很长了,但另外:我还将“#pragma once”更改为现在认为是问题所在的内容,但没有明显的差异。最后一个问题:如果你的头文件中有所有的“#includes”并且你的主 CPP 中有“#include 头文件”,那么你是否不需要在主 CPP 中也有#includes文件?

感谢您花时间阅读这篇很长的文章。如果我在做这个的时候漏掉了一些愚蠢的东西,我提前道歉......

最佳答案

When I compile I get two errors

这里的解决方案是,在 Universal Calculator V1.0.CPP 中,您需要切换前两个 #include 指令的顺序,以便 stdafx.h 将是第一个被包括在内的。参见 here where it says :

Visual C++ will not compile anything before the #include "stdafx.h" in the source file, unless the compile option /Yu'stdafx.h' is unchecked (by default); it assumes all code in the source up to and including that line is already compiled.

更好的是,read here以确保您确实需要使用预编译 header

When I comment "#include " or something like that in the main CPP file, I get a similar problem

是的,您需要这些包含项,所以不要将它们注释掉。您的问题是使用上面提到的 stdafx.h 时的顺序错误。

if you have all of your "#includes" inside your header file and you have "#include header file" in your main CPP, then shouldn't you not need to also have the #includes inside the main CPP file?

在大多数情况下(如果你正在学习 C++,那么我现在会遵循这个),你应该只在每个源文件(.cpp 或 .h)中包含什么是文件中的代码所必需的。就像,包括正在使用的声明。最好不要排除任何内容,依赖于已经包含在其他 .h 文件中的内容,因为它们可能会更改并且您将停止编译。包含您需要的内容,仅包含您需要的内容,不要遗漏任何内容。

关于c++ - 试图从头文件中的类调用函数,但调试无法识别类或函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51953905/

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