发布于 2015-08-16 14:43:16 | 68 次阅读 | 评论: 0 | 来源: 网络整理
成员函数是特定于某个类中的函数。它作用于类当中它是一个成员公司的任何对象,可以访问一个类的所有成员为对象。
成员函数将使用点运算符(.)上一个对象,其中将操作与目标有关的数据被调用。
让我们把上述概念来设置和获取不同的类成员的值:
import std.stdio;
class Box
{
public:
double length; // Length of a box
double breadth; // Breadth of a box
double height; // Height of a box
double getVolume()
{
return length * breadth * height;
}
void setLength( double len )
{
length = len;
}
void setBreadth( double bre )
{
breadth = bre;
}
void setHeight( double hei )
{
height = hei;
}
}
void main( )
{
Box Box1 = new Box(); // Declare Box1 of type Box
Box Box2 = new Box(); // 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();
writeln("Volume of Box1 : ",volume);
// volume of box 2
volume = Box2.getVolume();
writeln("Volume of Box2 : ", volume);
}
当上面的代码被编译并执行,它会产生以下结果:
Volume of Box1 : 210
Volume of Box2 : 1560