尝试从头文件中的 class 调用函数,但调试无法识别 class 或函数
trying to call a function from a class inside a header file but debug wont recognize class or function
好的...所以,我正在尝试通过使用它来学习 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();
}
通用Calculator.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
我知道这个 post 已经很长了,但另外:我还将“#pragma once”更改为现在认为是问题所在的内容,但没有明显差异。最后一个问题:如果你的头文件中有所有的“#includes”并且你的主 CPP 中有“#include 头文件”,那么你是否不需要在主 CPP 中也有#includes文件?
感谢您花时间阅读这篇很长的文章 post。如果我在做这个的时候漏掉了一些愚蠢的东西,我提前道歉...
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 以确保您确实需要使用 预编译 Headers.
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 文件中的内容,因为它们可能会更改并且您将停止编译。包括你需要的,只包括你需要的,不要遗漏任何东西。
你的第一个问题是你的 header 守卫 的标识符,它包含一个 white space (这是不允许的)。此外,标识符必须以字母或下划线开头。标识符是 case-sensitive;大小写字母不同。
您的另一个问题是#include 指令"stdafx.h",它必须放在任何其他指令之前。你的程序很简单,你不需要这个 header 所以你可以从两个文件中删除。但是,如果你对这个 header 的作用感到好奇,我建议你阅读这个 article.
接下来,为了使用您的 计算器 class 的可访问成员,有必要实例化 object 类型 计算器。为此你最好阅读 classes,我推荐你这个 site.
最后,您的 计算器 class 设计很低效。你需要阅读抽象和封装,这些概念是Object面向编程[=29]的基础=].这些知识将帮助您整齐地构建 classes。
好的...所以,我正在尝试通过使用它来学习 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();
}
通用Calculator.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
我知道这个 post 已经很长了,但另外:我还将“#pragma once”更改为现在认为是问题所在的内容,但没有明显差异。最后一个问题:如果你的头文件中有所有的“#includes”并且你的主 CPP 中有“#include 头文件”,那么你是否不需要在主 CPP 中也有#includes文件?
感谢您花时间阅读这篇很长的文章 post。如果我在做这个的时候漏掉了一些愚蠢的东西,我提前道歉...
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 以确保您确实需要使用 预编译 Headers.
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 文件中的内容,因为它们可能会更改并且您将停止编译。包括你需要的,只包括你需要的,不要遗漏任何东西。
你的第一个问题是你的 header 守卫 的标识符,它包含一个 white space (这是不允许的)。此外,标识符必须以字母或下划线开头。标识符是 case-sensitive;大小写字母不同。
您的另一个问题是#include 指令"stdafx.h",它必须放在任何其他指令之前。你的程序很简单,你不需要这个 header 所以你可以从两个文件中删除。但是,如果你对这个 header 的作用感到好奇,我建议你阅读这个 article.
接下来,为了使用您的 计算器 class 的可访问成员,有必要实例化 object 类型 计算器。为此你最好阅读 classes,我推荐你这个 site.
最后,您的 计算器 class 设计很低效。你需要阅读抽象和封装,这些概念是Object面向编程[=29]的基础=].这些知识将帮助您整齐地构建 classes。