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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T21:35:50+00:00 2026-05-22T21:35:50+00:00

I wanted to track some options via bitmask’ing them, and borrowed bitmask values from

  • 0

I wanted to track some options via bitmask’ing them, and borrowed bitmask values from this answer, yet they not seem to work together.

#include <iostream>

#define OP1 0x00003FFFUL
#define OP2 0x00007FFFUL
#define OP3 0x0000FFFFUL

int main() {
        unsigned long params = 0; // .
        params |= OP3;
        if ( (params & OP1) == OP1)
                std::cout << "Whoa. Lame masking\n";
}

Is it a type problem, or this method can’t be used for holding more than 1 option at a time (both OP1, OP2 and OP3 are wanted to stay in same params)?

  • 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-22T21:35:51+00:00Added an answer on May 22, 2026 at 9:35 pm

    For options you should use other masks, ones that are not overlapped, such as:

       #define OP1 0x000000FUL
       #define OP2 0x00000F0UL
       #define OP3 0x0000F00UL
    

    or (in this case you’ll be able to store as many options as available bits):

       #define OP1 0x0000001UL
       #define OP2 0x0000002UL
       #define OP3 0x0000004UL
       //ETC...
    

    Your masks will never work properly because if OP3 is set then OP1 and OP2 will be contained (the same goes if you use OP2, then OP1 will be implied):

         FFFF = 1111111111111111
      &  3FFF = 0011111111111111
         -----------------------
         3FFF = 0011111111111111
    

    The masks in the example you pasted were intended to extrapolate the last bits of an UL.

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

Sidebar

Related Questions

There may actually not be an answer to this question, but I wanted to
I have an imagemap and wanted to keep track of how many times it
Wanted to know if there was a way one could query shelveset details from
just wanted to ask where I define initial class properties? From other languages I
I'm currently trying to track down the source of some lazy loading calls in
I'm trying to implement some pixel tracking where I will save certain values in
This could turn out to be the dumbest question ever. I want to track
Before I plan to apply some algorithm, wanted to clarify, whether easier solution is
In my program(C++, WinAPI), I wanted to simulate pressing some existing hotkeys set in
I am working on a design for some models in Django and wanted to

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.