I would like to program in java two Boolean variables which are corelated in a way that one is allways false and one allways true. So if you set one to true the other one would automaticly change to false.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Don't use variables - use methods. Before using variables
make this better like so: use a single piece of data (which is what you really have) and use methods for the logic.
|
|||||||
|
|
Use setters and getters to manage the logic for you.
|
|||||||||
|
|
use smart setters
note I'm not sure if you really need this. If the 2 booleans are always opposites, why not just have 1 bool and make decisions based on it, instead of making decisions based on 2 bools? |
|||
|
|
|
I suspect you want I also suspect you only need one field, flag1 with a method
|
|||
|
|
|
|||
|
|
|
you can use only one boolean variable:
|
|||
|
|
|
Just get the opposite with |
|||
|
|
Booleanand a logic negation... – Tomasz Nurkiewicz Sep 21 '11 at 19:13