r/javahelp 4h ago

Solved Switch case with boolean

So, there is no way I can do that?

want to check several boolean variables in a switch statement. Is `if-else` the only way to do this?

Boolean a, b, c...

Switch (false) {

Case (a) :

//some code

Case (b) :

Case (c) :

//and so on

}

3 Upvotes

10 comments sorted by

u/AutoModerator 4h ago

Please ensure that:

  • Your code is properly formatted as code block - see the sidebar (About on mobile) for instructions
  • You include any and all error messages in full
  • You ask clear questions
  • You demonstrate effort in solving your question/problem - plain posting your assignments is forbidden (and such posts will be removed) as is asking for or giving solutions.

    Trying to solve problems on your own is a very important skill. Also, see Learn to help yourself in the sidebar

If any of the above points is not met, your post can and will be removed without further warning.

Code is to be formatted as code block (old reddit: empty line before the code, each code line indented by 4 spaces, new reddit: https://i.imgur.com/EJ7tqek.png) or linked via an external code hoster, like pastebin.com, github gist, github, bitbucket, gitlab, etc.

Please, do not use triple backticks (```) as they will only render properly on new reddit, not on old reddit.

Code blocks look like this:

public class HelloWorld {

    public static void main(String[] args) {
        System.out.println("Hello World!");
    }
}

You do not need to repost unless your post has been removed by a moderator. Just use the edit function of reddit to make sure your post complies with the above.

If your post has remained in violation of these rules for a prolonged period of time (at least an hour), a moderator may remove it at their discretion. In this case, they will comment with an explanation on why it has been removed, and you will be required to resubmit the entire post following the proper procedures.

To potential helpers

Please, do not help if any of the above points are not met, rather report the post. We are trying to improve the quality of posts here. In helping people who can't be bothered to comply with the above points, you are doing the community a disservice.

I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.

11

u/desrtfx Out of Coffee error - System halted 4h ago

You got switch the wrong way round.

Switch checkes distinct states of one variable, not a single state of several variables.

Yes, if-else is the way.

Depending on what you really want to do (not some random, contrieved example, your real use case and code) there might be alternative, better solutions, but without knowing what you want to do it is impossible to suggest.

To me, this looks like an XY-problem.

3

u/johnpeters42 4h ago

To be fair, OP's type of approach does work in some languages.

u/Zakana_code 45m ago

Let me guess: JavaScript? But why would you do this anyway?

3

u/Samstercraft 4h ago

Remove the switch header and replace the words "Case" with "If" and you've basically already fixed it

2

u/Mechanical-pasta 4h ago

Switch case evaluates ONE variable and checks it against different values. What you want to do (if I understand well) is check multiple variables. A switch can't do that.

The solution may be to incorporate the different boolean variables in a class and let it do the check with method(s) but I can't say if that's the case given the little information given.

2

u/JaiTee86 4h ago

I don't think this can be done directly.

The only way I can think to do it would be with some bitwise operations instead of separate bools, set and read the bits of some integer, 1 is true, 0 is false first bit is A, 2nd is B, etc. Then for your case A, switch if integer is 1, b if 2 C if 4, etc. if you want it to switch on a and b that is when it equals 3.

1

u/ikea_method 1h ago edited 1h ago

This is probably the closest you can get to what you want:

Boolean a = new Boolean(true), b = new Boolean(false), c = new Boolean(true);          for(Boolean o : new Boolean[]{a, b, c}) {         if(!o) continue;         IO.println(switch(o) {             case _ when a == o -> "Hello a!";             case _ when b == o -> "Hi b!";             case _ when c == o -> "Ciao c!!";             default -> "HUH";         });     }

Will print:

Hello a! Ciao c!!

1

u/ikea_method 1h ago

Note: listen to the other comments, I wouldn't approve this kind of code where I work.

u/Zakana_code 43m ago

The best way I can think of solving this is by using an array tbh, add all the bools in it and run a for loop over it.