Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6083159
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T11:22:15+00:00 2026-05-23T11:22:15+00:00

When designing an interface, someone recommended to use the non-virtual interface pattern. Can someone

  • 0

When designing an interface, someone recommended to use the non-virtual interface pattern. Can someone briefly outline what the benefits of this pattern are?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T11:22:15+00:00Added an answer on May 23, 2026 at 11:22 am

    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:

    class Animal
    {
    public:
        virtual void speak() const = 0;
    };
    
    class Dog : public Animal
    {
    public:
        void speak() const { std::cout << "Woof!" << std::endl; }
    };
    
    class Cat : public Animal
    {
    public:
        void speak() const { std::cout << "Meow!" << std::endl; }
    };
    

    This uses the usual public virtual interface that we’re used to, but it has a couple of problems:

    1. Each derived animal is repeating code — the only part that changes is the string, yet each derived class needs the whole std::cout << ... << std::endl; boilerplate code.
    2. The base class can’t make guarantees about what speak() does. A derived class may forget the new line, or write it to cerr or anything for that matter.

    To fix this, you can use a non-virtual interface that is supplemented by a private virtual function that allows polymorphic behaviour:

    class Animal
    {
    public:
       void speak() const { std::cout << getSound() << std::endl; }
    private:
       virtual std::string getSound() const = 0;
    };
    
    class Dog : public Animal
    {
    private:
       std::string getSound() const { return "Woof!"; }
    };
    
    class Cat : public Animal
    {
    private:
       std::string getSound() const { return "Meow!"; }
    };
    

    Now the base class can guarantee that it will write out to std::cout and end with a new line. It also makes maintenance easier as derived classes don’t need to repeat that code.

    Herb Sutter wrote a good article on non-virtual interfaces that I would recommend checking out.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can I use a marker annotation on an enum when designing a generic interface?
We have a given REST interface: POST /calculation <data>abc</data> This calculation can be implemented
I have this task of designing a new interface for a distributed application (multiple
While designing an interface for a class I normally get caught in two minds
I'm designing an interface to display sets of data. I'm interested in organizing the
When designing a user interface for an application that is going to be used
I'm designing the user interface. It has some static content and a lot of
I always have trouble designing the user interface when it come to manage a
I'm designing an application which will have a network interface for feeding out large
How do I get started designing and implementing a script interface for my .NET

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.