目录

班级成员职能(Class Member Functions)

类的成员函数是一个函数,它在类定义中的定义或原型与任何其他变量一样。 它对其所属的类的任何对象进行操作,并且可以访问该对象的类的所有成员。

让我们使用先前定义的类来使用成员函数访问类的成员,而不是直接访问它们 -

class Box {
   public:
      double length;         // Length of a box
      double breadth;        // Breadth of a box
      double height;         // Height of a box
      double getVolume(void);// Returns box volume
};

成员函数可以在类定义中定义,也可以使用scope resolution operator, :单独定义scope resolution operator, : - 。 即使您不使用内联说明符,在类定义中定义成员函数也会声明函数inline联。 所以要么你可以定义Volume()函数如下 -

class Box {
   public:
      double length;      // Length of a box
      double breadth;     // Breadth of a box
      double height;      // Height of a box
      double getVolume(void) {
         return length * breadth * height;
      }
};

如果您愿意,可以使用scope resolution operator (::)在类外定义相同的函数,如下所示 -

double Box::getVolume(void) {
   return length * breadth * height;
}

在这里,唯一重要的一点是你必须在:: operator之前使用类名。 将在对象上使用点运算符( . )调用成员函数,它将操作与该对象相关的数据,如下所示 -

Box myBox;          // Create an object
myBox.getVolume();  // Call member function for the object

让我们在上面的概念中设置并获取类中不同类成员的值 -

#include <iostream>
using namespace std;
class Box {
   public:
      double length;         // Length of a box
      double breadth;        // Breadth of a box
      double height;         // Height of a box
      // Member functions declaration
      double getVolume(void);
      void setLength( double len );
      void setBreadth( double bre );
      void setHeight( double hei );
};
// Member functions definitions
double Box::getVolume(void) {
   return length * breadth * height;
}
void Box::setLength( double len ) {
   length = len;
}
void Box::setBreadth( double bre ) {
   breadth = bre;
}
void Box::setHeight( double hei ) {
   height = hei;
}
// Main function for the program
int main() {
   Box Box1;                // Declare Box1 of type Box
   Box Box2;                // Declare Box2 of type Box
   double volume = 0.0;     // Store the volume of a box here
   // box 1 specification
   Box1.setLength(6.0); 
   Box1.setBreadth(7.0); 
   Box1.setHeight(5.0);
   // box 2 specification
   Box2.setLength(12.0); 
   Box2.setBreadth(13.0); 
   Box2.setHeight(10.0);
   // volume of box 1
   volume = Box1.getVolume();
   cout << "Volume of Box1 : " << volume <<endl;
   // volume of box 2
   volume = Box2.getVolume();
   cout << "Volume of Box2 : " << volume <<endl;
   return 0;
}

编译并执行上述代码时,会产生以下结果 -

Volume of Box1 : 210
Volume of Box2 : 1560
↑回到顶部↑
WIKI教程 @2018