What is delegation? When would I want to use it?

前端 未结 2 1236
走了就别回头了
走了就别回头了 2021-01-18 03:24

In OOP, a term delegation is mentioned. How is this modelled in a class? I searched on yahoo etc but got links to delegates.

2条回答
  •  春和景丽
    2021-01-18 04:01

    Imagine you have the classes Car and Engine:

    public class Car {
       private Engine engine = new Engine(); //or inject it externally
    
       public void start() {
           engine.start();
       }
    }
    

    In this example the Car delegates to the underlying Engine. The user of the car cannot directly start the engine (unless he is a mechanic). But he can tell the car to start, and the car in turn tells the engine to start.

    You'd want to use it whenever you use object composition and you need to use a method of one of the composing objects. In that case you create a method that delegates to it.

提交回复
热议问题