求长方形面积与周长
Rect(float a=1,float b=1){x=a;y=b} void set(float a=0,float b=0){x=a;y=b;}
这俩句给型参赋初值有什么用呀?不明白
[QUOTE]Rect(float a=1,float b=1){x=a;y=b} void set(float a=0,float b=0){x=a;y=b;}[/QUOTE]
两个函数都是为了给出长方形的长和宽吧 x,y都是私有成员,所以通过这种方法来赋值
现在开始对编程感兴趣了.楼主真的不容易.