W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
成員函數(shù)是特定于類的函數(shù),它可以訪問該對象的類的所有成員,在對象上使用點運算符(.)調(diào)用成員函數(shù)。
讓我們提出以上概念來設(shè)置和獲取類中不同類成員的值-
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);
}
編譯并執(zhí)行上述代碼后,將產(chǎn)生以下輸出-
Volume of Box1 : 210
Volume of Box2 : 1560
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: