位置:首页 > 高级语言 > C++在线教程 > C++类的成员函数

C++类的成员函数

类的成员函数是一个函数,它的定义或像任何其他变量的类定义的原型。其所操作的类,它是一个成员的对象,并且有权访问一个类用于该对象的所有成员。

让我们看看之前定义的类,不是直接使用成员函数访问访问类的成员:

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
};

成员函数可以在类定义中被定义或单独使用范围解析操作符 :: 类定义中定义的成员函数声明函数内联,即使不使用内联说明。也可以定义如下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;
      }
};

如果喜欢,可以在类的外部使用范围解析操作符:: 定义相同功能如下:

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

这里,重要的一点是,必须使用的类名在::操作符之前。对象成员函数将使用点(.)操作符,涉及操纵该对象如下数据被调用:

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