6

编辑:添加了“添加”类,不小心忘记了。如何将类分成不同的文件?我了解类如何工作以及如何制作对象和类似的东西。但是,我在将类放入不同文件的过程中发现了一些混乱。非常感谢您的帮助!另外,我使用 CodeBlocks 作为 IDE。到目前为止,这是我的理解:

  1. 创建新类,CB 给你一个“.h”和一个新的“.cpp”。
  2. 源文件开头的“Classname::Classname”是一个作用域解析运算符。
  3. 您在主源文件中使用“#include classname.h”来导入其内容。
  4. 您可以使用已声明的对象从“main”调用函数。

到目前为止,这是我的理解,但我只是对如何实现它感到困惑。我创建了一个简单的计算器,所有类都在一个源文件中。它工作得很好,我想我对此感到非常自豪:) 我知道有很多更简单的方法可以制作这样的东西,但我使用类和对象只是为了练习。这是我的计算器代码。另外,我真的为这篇长文道歉:/谢谢,如果你读了这么多,特别感谢你能帮我一点忙!

这是我在一个源文件中的代码:

#include <iostream>
using namespace std;

class Addition {
public:
float add (float x, float y) {
float sum;
sum=x+y;
return sum;
}


};


class Subtraction {
public:
float subtract (float x, float y) {
float dif;
dif=x-y;
return dif;
}

};

class Multiplication {
public:
float multiply (float x, float y) {
float prod;
prod=x*y;
return prod;
}

};

class Division {
public:
float divide (float x, float y) {
float quot;
quot=x/y;
return quot;
}
};

int op;
char cont;

int main()
{

do {
cout<<"Welcome to C++ Calculator v2!"<<endl;
cout<<"Select the number for which operation you want to use: "<<endl;
cout<<"1-Addition"<<endl;
cout<<"2-Subtraction"<<endl;
cout<<"3-Mutliplication"<<endl;
cout<<"4-Division"<<endl;
cin>>op;

if (op==1) {
float num1;
float num2;
Addition addobj;
cout<<"You have chosen Addition!"<<endl;
cout<<"Enter the first number you want to add: "<<endl;
cin>>num1;
cout<<"Enter the second number you wat to add: "<<endl;
cin>>num2;
float ans=addobj.add(num1, num2);
cout<<"The sum is "<<ans<<endl;
cout<<"Do you wish to continue? Y/N"<<endl;
cin>>cont;
}

if (op==2) {
float num1;
float num2;
Subtraction subobj;
cout<<"You have chosen Subtraction!"<<endl;
cout<<"Enter the first number you want to subtract: "<<endl;
cin>>num1;
cout<<"Enter the second number you want to subtract: "<<endl;
cin>>num2;
float ans=subobj.subtract(num1, num2);
cout<<"The difference is "<<ans<<endl;
cout<<"Do you wish to continue? Y/N"<<endl;
cin>>cont;
}

if (op==3) {
float num1;
float num2;
Multiplication multobj;
cout<<"You have chosen Multiplication!"<<endl;
cout<<"Enter the first number you want to multiply: "<<endl;
cin>>num1;
cout<<"Enter the second number you want to multiply: "<<endl;
cin>>num2;
float ans=multobj.multiply(num1, num2);
cout<<"The product is "<<ans<<endl;
cout<<"Do you wish to continue? Y/N"<<endl;
cin>>cont;
}

if (op==4) {
float num1;
float num2;
Division divobj;
cout<<"You have chosen Division!"<<endl;
cout<<"Enter the first number you want to divide: "<<endl;
cin>>num1;
cout<<"Enter the second number you want to divide: "<<endl;
cin>>num2;
float ans=divobj.divide(num1, num2);
cout<<"The quotient is "<<ans<<endl;
cout<<"Do you wish to continue? Y/N"<<endl;
cin>>cont;
}

} while (cont=='Y'||cont=='y');
if (cont=='N'||'n') {
cout<<"Thanks for using my program, goodbye!"<<endl;
}


return 0;

}
4

4 回答 4

7

好的,我将通过您的示例向您展示:

减法.h

class Subtraction 
{
public:
 float subtract (float x, float y);
};

减法.cxx

#include "subtraction.h"

float Subtraction::subtract (float x, float y)
{     
  float dif;
  dif=x-y;
  return dif;    
}

乘法.h

class Multiplication 
{
public:
  float multiply (float x, float y);
};

乘法.cxx

#include "multiplication.h"

float Multiplication::multiply (float x, float y)
{
  float prod;
  prod=x*y;
  return prod;
}

等等...

主文件

#include "subtraction.h"
#include "multiplication.h"

int main()
{
 //use the classes just as before.
}

另外,为简单起见,我没有将它放在代码中,但请继续养成确保您的声明只包含一次的习惯。在一个大型项目中,如果您不采取这些保护措施,这可能会变得非常糟糕。

#ifndef SUBTRACTION_H
#define SUBTRACTION_H

class Subtraction
{
     ....
};
#endif /*SUBTRACTION_H*/
于 2012-08-09T13:53:59.717 回答
2

这是 Jonathan 的示例(为简洁起见,我没有添加包含防护,但绝对要这样做!),但删除了一些重复项并添加了一些 OO 以供您学习。请注意,虽然这肯定不是实际计算器的实现方式,但如果您学得足够好,它有望让您对 C++ 有更多的了解。

数学运算.h:

  //a base class!
class MathOperation
{
public:
  virtual float doit( float x, float y ) const = 0;
};

减法.h:

class Subtraction : public MathOperation
{
public:
  float doit( float x, float y ) const;
};

加法.h:

class Addition : public MathOperation
{
public:
  float doit( float x, float y ) const;
};

减法.cpp:

#include "subtraction.h"
float Subtraction::doit( float x, float y ) const { return x - y; }

加法.cpp:

#include "addition.h"
float Subtraction::doit( float x, float y ) const { return x + y; }

主.cpp:

#include <iostream>
#include <string>
  //yes this saves typing, but there reasons not to use it.. search SO!
using namespace std;

  //this one avoids you having to copy/paste the similar parts
void DoIt( const MathOperation& op, const std::string& opName, const std::string& verb, const std::string& resultName )
{
  cout << "You have chosen " << opName << "!" << endl;

  cout<<"Enter the first number you want to " << verb << ": "<< endl;

    //here you should actually check if the user really types in a number, and not    "blablabla"
    //and off course, put it in a seperate function so you can reuse it for num2
  float num1;
  cin>>num1;

  float num2;
  cout<<"Enter the second number you wat to " << verb << ": "<< endl;
  cin>>num2;

  cout<<"The " << resultName << " is " << op.doit( num1, num2 ) <<endl;
}

int main()
{
int op;
char cont = 'n';

do {
  cout<<"Welcome to C++ Calculator v2!"<<endl;
  cout<<"Select the number for which operation you want to use: "<<endl;
  cout<<"1-Addition"<<endl;
  cout<<"2-Subtraction"<<endl;
  cout<<"3-Mutliplication"<<endl;
  cout<<"4-Division"<<endl;
  cin>>op;

    //see how much shorter this is?
  if( op == 1 )
    DoIt( Addition(), "Addition", "add", "sum" );
  else if (op==2)
    DoIt( Subtraction(), "Subtraction", "subtract", "difference" );
  else
    cout << "Sorry I don't know this number" << endl;

  cout<<"Do you wish to continue? Y/N"<<endl;
  cin>>cont;

} while (cont=='Y'||cont=='y');

cout<<"Thanks for using my program, goodbye!"<<endl;
return 0;
}
于 2012-08-09T14:14:52.070 回答
0

最好以与类相同的方式命名文件。在您的情况下,这不是一个好主意,因为您的类很短,但每个类都应该有自己的 2 个文件 - 例如 Subtraction.h 和 Subtraction.cpp。在 .h 文件中,您应该只放置声明 - 在您的情况下: class Subtraction { public: float subtract (float , float); }

在 .cpp 文件中,您应该包含 .h 文件并放置实现。在你的情况下:

float Substraction::subtract (float x, float y) { float dif; dif=x-y; return dif; }

另请参阅C++ 头文件、代码分离为什么在 C++ 中有头文件和 .cpp 文件?

希望这个对你有帮助!:)

于 2012-08-09T13:51:55.393 回答
0

每个文件只有一个公共类是很好的。按照约定,文件名与类名相同(如果在文件中完成了某些定义,则扩展名为 .h .hh 或 .hpp)。

如果您想将不同的类放在不同的文件中,一个简单的文本编辑器将帮助您做到这一点。

于 2012-08-09T13:52:19.163 回答