如果我们将树视为对象那么它的叶子和树枝会是什么?
同样,如果我们将狗视为对象那么它的腿,嘴和眼睛会是什么?
答案 0 :(得分:2)
一棵树有一组分支。每个分支都有一组叶子。
即,(伪代码)
class Tree {
Branch[] branches;
}
class Branch {
Leaf[] leaves;
}
class Leaf {
}
与狗类似:狗有眼睛的集合;它还有一系列腿;它有一个嘴巴。
class Dog {
Leg[] legs;
Mouth mouth;
Eye[] eyes;
}