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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T05:54:37+00:00 2026-06-01T05:54:37+00:00

Some assertions in my code just started acting strangely, and I was wondering if

  • 0

Some assertions in my code just started acting strangely, and I was wondering if anyone had a similar situation before. A short code snippet like:

#include <cassert>

class A{
    protected:
        bool isM, isN;

    public:
        void someFunction();
};

A::someFunction(){
    assert (this->isM && this->isN);

    ... 
}

produces an assertion failed result. On the other hand, after changing the code just slightly:

A::someFunction(){
    assert(this->isM);
    assert(this->isN);

    ...
}

the assertions pass with no problem and function finishes normally. Function finishing normally is the expected functionality, since the bool variables are set before the actual call to someFunction().

As an additional question, is there a better way of doing assertions in C++? I’ve grown up on C, and am still using the C-style assertions. I’ve just scratched Google surface on this, but found nothing hinting there’s anything new.

Oh, and if needed, I can provide more context for the class and the variables if this is not enough for anyone to recognize the problematic situation. The bool variables are actually set in an instance of a subclass, while someFunction is one of the rare functionalities implemented in the class A interface, but since this complicates the question, I will only edit it in in more detail if the community thinks it relevant.

  • 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-01T05:54:38+00:00Added an answer on June 1, 2026 at 5:54 am

    The booleans are uninitialized. They could take any value. The behaviour here is undefined. To illustrate that, using a gcc 4.7 snapshot on ubuntu 11.10:

    #include <iostream>
    
    struct A {
      bool a, b;
    };
    
    int main() {
    
        A a0;
        std::cout << a0.a << ", " << a0.b << "\n"; 
    
        A a1;
        std::cout << a1.a << ", " << a1.b << "\n"; 
    
    }
    

    produces this output:

    121, 0
    244, 31
    

    or, running again,

    192, 0
    244, 127
    

    or, optimizing with -O3, a bunch of zeroes.

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

Sidebar

Related Questions

This is some kind of academic question, I just wondering if it is possible
When reading some documentation about assertions, I found: java -ea -dsa Enables assertions in
Some code for context: class a { } class b { public a a{get;set;}
I've developed some concept code for a project that I will be working on
I want to have more control over macros such as assertions (and some logging
I have unexpected assertions faillures in my code using a checked STL implentation. After
Every now and then, especially when doing 64bit builds of some code base, I
I'm trying to use some code that I wrote on another computer that splits
I would like to use some kind of BB code for a php application:
I've been scratching my head for quite some time now, this code worked fine

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.