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

The Archive Base Latest Questions

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

Is it possible to simplify this? public void setDisabled(boolean disabled) { if(disabled) this._rflags |=

  • 0

Is it possible to simplify this?

    public void setDisabled(boolean disabled) {
    if(disabled)
        this._rflags |= 1 << B1;
    else
        this._rflags &= ~(1 << B1);
}

It sets 1 bit of a byte (B1 = 2)

-edit-

Important info i missed

private char _rflags;

public static final char B1 = 1 << 2;

I wanted to keep it as a char and access single or multiple bits as different types because the data comes from C structs with unions. I will also be sending this data back over UDP.

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

    There’s no real tidy way to make it shorter in Java. If you’re going to repeat it, I’d say stick to the DRY principle and just put it in another method.

    public void setDisabled(final boolean disabled) {
        toggleFlag(B1, disabled);
    }
    
    private void toggleFlag(final int bit, final boolean on) {
        if (on)
            this._rflags |= 1 << bit;
        else
            this._rflags &= ~(1 << bit);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

glob(aaafolder/*php) glob(bbbfolder/*php) glob(cccfolder/*php) Is it possible to simplify this? glob((?=aaafolder/*php)(?=bbbfolder/*php)(?=cccfolder/*php)) The above returns nothing.
I'm gonna try and simplify this as much as possible. Lets say i have
Is it possible to simplify this code into a cleaner/faster form? StringBuilder builder =
Can anyone explain why isn't this possible (at least in .Net 2.0): public class
I would like to simplify my code and add the possible to the css
Possible Duplicate: How does this CSS triangle shape work? Please help me i need
How could I simplify this update instruction? Whenever a client buys an item it
In Perl, I can do this: push(@{$h->[x]}, y); Can I simplify the following python
Bear with me as I try to simplify my issue as much as possible.
In order to simplify some code, I'm wondering if it is possible to parameterize

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.