位置:首頁 > 高級語言 > 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