D语言类成员函数

成员函数是特定于某个类中的函数。它作用于类当中它是一个成员公司的任何对象,可以访问一个类的所有成员为对象。

成员函数将使用点运算符(.)上一个对象,其中将操作与目标有关的数据被调用。

让我们把上述概念来设置和获取不同的类成员的值:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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
联系我们

邮箱 626512443@qq.com
电话 18611320371(微信)
QQ群 235681453

Copyright © 2015-2024

备案号:京ICP备15003423号-3