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 9130607
In Process

The Archive Base Latest Questions

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

Can I have a class that either has or not has member based on

  • 0

Can I have a class that either has or not has member based on template? Imaginary code:

template <typename HasBazMember=true>
class Foo {
  int bar;

  ConditionallyHaveMember<int, HasBazMember> baz;
};

So in above I want Foo to have member “baz” and Foo not.

  • 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-17T07:59:34+00:00Added an answer on June 17, 2026 at 7:59 am

    Yes, you can, but you have to specialize the entire class. Example:

    template< bool HasBazMember = true >
    class Foo {
      int bar;
      int baz;
    };
    
    template<>
    class Foo< false > {
      int bar;
    };
    

    If you can separate the logic, you can put those members in a base class so that you don’t need to duplicate the code for the entire class. For instance,

    template< bool HasBazMember >
    class FooBase
    {
    protected:
       int baz;
    };
    
    template<>
    class FooBase< false >
    {
        // empty class
        // the Empty Base Optimization will make this take no space when used as a base class
    };
    
    template< bool HasBazMember = true >
    class Foo : FooBase< HasBazMember >
    {
        int bar;
    };
    

    Or using Boost.CompressedPair:

    struct empty {};
    
    template< bool HasBazMember = true >
    class Foo
    {
        boost::compressed_pair<
            int
          , typename std::conditional< HasBazMember, int, empty >::type
        > bar_and_maybe_baz_too;
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Base class that needs a Generic type. That can be either
I have a class that I can have many instances of. Inside it creates
Here's the scenario: I'd like to have a host class that can have a
In Java, how can I have a Runnable class that, depending on its constructor,
Let me explain best with an example. Say you have node class that can
I'm putting together a custom SynchronizedCollection<T> class so that I can have a synchronized
I have a class in C++ that I can't modify. However, that class holds
I have a class Something that implements ISomething . How can I convert/cast from
I have a Version class that contains a version_number string, and can obtain a
I have a button that can have a focus css class associated with it

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.