文件名称:C++调试程序
文件大小:360B
文件格式:CPP
更新时间:2014-11-13 10:32:09
C++
#include"iostream"
using namespace std;
class Dog
{
public:
Dog(int Age=0,int Weight=0);
int GetAge()
{ return age; }
int GetWeight()
{ return weight; }
private:
int age,weight;
};
Dog::Dog(int Age,int Weight)
{
age=Age;
weight=Weight;
}
int main()
{
Dog r(2,3);
cout<