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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T20:37:31+00:00 2026-05-29T20:37:31+00:00

How do i assign a default value to a bool that is a reference?

  • 0

How do i assign a default value to a bool that is a reference?

I have a function like this :

void someFunction(bool a = true, bool& b)
{
 if(a)
   b = false;
 else
   std::cout << "nothings changed" << std::endl;
}

How should i assign the default value to b in this context?

void someFunction(bool a = true, bool& b = false)

will not work. So how should it be done?

  • 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-29T20:37:34+00:00Added an answer on May 29, 2026 at 8:37 pm

    You cannot initialize non-const references with values. You need a variable:

    bool dummy_variable;
    
    void someFunction(bool a = true, bool& b = dummy_variable)
    {
        // ...
    }
    

    But it would probably make a lot more sense to simply return the bool:

    bool someFunction(bool a = true)
    {
        return !a;
    }
    

    Then the client can still decide for himself if he wants to ignore the result or not.

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

Sidebar

Related Questions

I want to assign default value to timestamp datatype in c#? I have an
I would like to assign a drive letter to a GMail drive so that
I have a few properties defined in my header file like so @property (assign)
I want to assign some default value to a property or want to replace
I am on Perl 5.8 and am needing to assign a default value. I
In Perl, if I want to default a value that might exist, for example
Is there a way in MySQL table to assign a default when a value
I want to assign a default value if url parameter is not set. Something
I am trying to hide a checkbox and assign a default value of 1
I tried DbNull.Value but no luck. How do I assign a default value as

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.