定义一个Dog类,包含age,weight等属性,以及对这些属性操作的方法。

#include
using namespace std;

class Dog{
    public:
        Dog(int initialAge=0,int initialWeight=5);
        ~Dog();
        int getAge(){
            return age;
        }
        void setAge (int age){
            this->age=age;
        }
        int getWeight(){
            return weight;
        }
        void setWeight(int weight){
            this->weight=weight;
        }
        private:
            int age,weight;
};

Dog::Dog(int initialAge, int initialWeight){
    age=initialAge;
    weight=initialWeight;
}

Dog::~Dog()
{
}

int main(){
Dog Jack(2,10);
cout<<"Jack is a Dog who is";
cout< Jack.setAge(7);
Jack.setWeight(20);
cout<<"Now Jack is";
cout<

return 0;
}
定义一个Dog类,包含age,weight等属性,以及对这些属性操作的方法。_第1张图片

 

你可能感兴趣的:(c++,算法,图论)