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