定义一个Tree(树)类,有成员ages(树龄),成员函数grow(int years)对ages加上years,age()显示tree对象的ages的值。
时间: 2023-04-08 20:04:12 浏览: 211
Automatic Age Estimation Based on Facial Aging Patterns 年龄估计AGES算法
好的,这是一个编程问题,我可以回答。以下是Tree类的定义:
```
class Tree {
private:
int ages; // 树龄
public:
Tree(int a) : ages(a) {} // 构造函数,初始化树龄
void grow(int years) { ages += years; } // 成长函数,增加树龄
int age() { return ages; } // 显示树龄
};
```
使用示例:
```
Tree myTree(10); // 创建一个树龄为10的树对象
myTree.grow(5); // 让树增加5年
cout << "My tree is " << myTree.age() << " years old." << endl; // 显示树龄
```
输出结果为:
```
My tree is 15 years old.
```
阅读全文