我的代码应该显示复数的加法,减法等,而不需要用户输入。我有三个类:test.cpp,complex.cpp和complex.h来运行程序,定义构造函数和方法,并分别创建一个头类。但是,当我运行我的代码时,我得到了一系列错误,我一直试图弄清楚。
complex.h
//complex class definition
#ifndef COMPLEX_H
#define COMPLEX_H
//class complex
class Complex
{
public:
Complex(); //default no arg constructor
Complex(double a); //one arg constructor
Complex(double a, double b); //two arg constructor
Complex operator+(const Complex &) const; //addition method
Complex operator-(const Complex &) const; //subtraction method
Complex operator*(const Complex &) const; //multiplication method
Complex operator/(const Complex &) const; //division method
void print() const; //output
private:
double a; //real number
double b; //imaginary number
}; //end class Complex
#endif
complex.cpp
#include "stdafx.h"
#include <iostream>
#include "complex.h"
using namespace std;
//no arg constructor
Complex::Complex()
{
a = 0;
b = 0;
}
//one arg instructor
Complex::Complex(double real)
{
a = real;
b = 0;
}
//two arg constructor
Complex::Complex(double real, double imaginary)
{
a = real;
b = imaginary;
}
//addition
Complex Complex::operator+(const Complex &number2) const
{
return a + number2.a, b + number2.b;
}
//subtraction
Complex Complex::operator-(const Complex &number2) const
{
return a - number2.a, b - number2.b;
}
//multiplication
Complex Complex::operator*(const Complex &number2) const
{
return a * number2.a, b * number2.b;
}
//division
Complex Complex::operator/(const Complex &number2) const
{
return a / number2.a, b / number2.b;
}
//output display for complex number
void Complex::print() const
{
cout << '(' << a << ", " << b << ')';
}
TEST.CPP
#include <iostream>
#include <complex>
#include "complex.h"
#include "stdafx.h"
using namespace std;
int main()
{
Complex b(1.0, 0.0);
Complex c(3.0, -1.0);
/*cout << "a: ";
a.print();
system ("PAUSE");*/
};
现在进行测试,因为代码显示下面的部分被注释掉,我试图只调用三个构造函数中的两个,看看我是否可以使用它。
我收到的错误:
error C2065: 'Complex' : undeclared identifier
error C2065: 'Complex' : undeclared identifier
error C2146: syntax error : missing ';' before identifier 'b'
error C2146: syntax error : missing ';' before identifier 'c'
error C3861: 'b': identifier not found
error C3861: 'c': identifier not found
我正在尝试在Visual Studio 2010中运行它。有人可以帮忙吗?
答案 0 :(得分:3)
我认为问题出在你的Complex.cpp中。如果编译类的代码时出错,则该类是未知的,因此标识符也是复杂的。
快速浏览后,外观似乎是正确的,但操作员功能有一些错误:
不正确:
//addition
Complex Complex::operator+(const Complex &number2) const
{
return a + number2.a, b + number2.b;
}
正确:
//addition
Complex Complex::operator+(const Complex &number2) const
{
return Complex(a + number2.a, b + number2.b);
}
问题是运算符方法的返回类型。它们必须与声明的相同。此外,您不能同时返回两个变量。如果要这样做,则必须使用structs或类(通过使用新值调用Complex类的构造函数)。
如果要操纵成员a和b,则无法将方法定义为“const”。如果你说一个函数是const,那就意味着调用这个方法不会操纵所有的类成员值。
答案 1 :(得分:1)
您可能遇到stdafx.h问题
的问题至少你应该尝试将#include "stdafx.h
置于其他所有包含之前
要么
您可以尝试将项目属性设置为不使用stdafx.h
1. right click on project and select Properties
2. go to C/C++ -> Precompiled Headers
3. select "Not Using Precompiled Headers"
答案 2 :(得分:1)
#include <complex>
#include "complex.h"
这是一种难闻的气味。这些#include文件可能都使用相同的名称作为标题保护。
尝试改变你的。
#ifndef MY_COMPLEX_H
#define MY_COMPLEX_H
..也许可以将模块从“复杂”重命名为其他内容,以避免与同名的系统头文件发生冲突。
答案 3 :(得分:0)
尽量使其尽可能简单。然后添加部件,直到找到错误。
这有用吗?
#include "complex.h"
int main()
{
Complex c(3.0, -1.0);
return 0;
};