When design interface, someone recommend to use non-virtual interface pattern. Can someone briefly introduce what is benefit of this pattern?
|
|
The essence of the non-virtual interface pattern is that you have private virtual functions, which are called by public non-virtual functions (the non-virtual interface). The advantage of this is that the base class has more control over its behaviour than it would if derived classes were able to override any part of its interface. In other words, the base class (the interface) can provide more guarantees about the functionality it provides. As a simple example, consider the good old animal class with a couple of typical derived classes:
This uses the usual public virtual interface that we're used to, but it has a couple of problems:
To fix this, you can use a non-virtual interface that is supplemented by a private virtual function that allows polymorphic behaviour:
Now the base class can guarantee that it will write out to Herb Sutter wrote a good article on non-virtual interfaces that I would recommend checking out. |
||||
|
|
Here is a wiki article it a bit more in details with some examples. The essence is that you can ensure important conditions (like obtaining and releasing locks) in a central place in your base class while still allowing to derive from it to provide different implementations by using private or protected virtual functions. Users of any class of the class hierarchy will always call the public interface which dispatches the calls to the not externally visible implementations. |
|||
|
|