可能重复:
更喜欢组合而不是继承?
java中的继承和委托有什么区别?
如何在我的项目中使用以下示例?请你指导我的代表团。我知道继承,但对委托知之甚少。所以,请给一个合理的理由。我为什么要使用这个?
package com.m;
class RealPrinter { // the "delegate"
void print() {
System.out.println("something");
}
}
class Printer { // the "delegator"
RealPrinter p = new RealPrinter(); // create the delegate
void print() {
p.print(); // delegation
}
}
public class Tester {
// to the outside world it looks like Printer actually prints.
public static void main(String[] args) {
Printer printer = new Printer();
printer.print();
}
}