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

  • Home
  • SEARCH
  • 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 9136733
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T08:59:31+00:00 2026-06-17T08:59:31+00:00

As we all know, some languages have the notion of interfaces. This is Java:

  • 0

As we all know, some languages have the notion of interfaces. This is Java:

public interface Testable {
  void test();
}

How can I achieve this in C++ (or C++11) in most compact way and with little code noise? I’d appreciate a solution that wouldn’t need a separate definition (let the header be sufficient). This is a very simple approach that even I find buggy 😉

class Testable {
public:
  virtual void test() = 0;
protected:
  Testable();
  Testable(const Testable& that);
  Testable& operator= (const Testable& that);
  virtual ~Testable();
}

This is only the beginning.. and already longer that I’d want. How to improve it? Perhaps there is a base class somewhere in the std namespace made just for this?

  • 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-06-17T08:59:32+00:00Added an answer on June 17, 2026 at 8:59 am

    What about:

    class Testable
    {
    public:
        virtual ~Testable() { }
        virtual void test() = 0;
    }
    

    In C++ this makes no implications about copyability of child classes. All this says is that the child must implement test (which is exactly what you want for an interface). You can’t instantiate this class so you don’t have to worry about any implicit constructors as they can’t ever be called directly as the parent interface type.

    If you wish to enforce that child classes implement a destructor you can make that pure as well (but you still have to implement it in the interface).

    Also note that if you don’t need polymorphic destruction you can choose to make your destructor protected non-virtual instead.

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

Sidebar

Related Questions

We all know the effects that lots of thrown exceptions can have over the
I know some higher level languages, all web based (PHP, javascript, some python). I've
of all the languages i know im the weakest in php... I have a
I have developed some classes with similar behavior, they all implement the same interface.
We all know there are some case sensitive languages, as well as case insensitive.
Lately I have come to realize that I should know some of Java for
We all know of sleep method available in java threads.. I understand that the
We all know it - this is the reading that lists the changes brought
We all know to set canvas's context property like this: ctx.textBaseline = top; ctx.shadowColor
if I have some expression on c++: const int x = 3; can I

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.