Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Okay, I need to be able to call a method and toggle a boolean value so that the return is different every time I need to be able to call the method 9 time's and each time switch between returning X, O, X, O, X, O, X, O, X

public class XOChecker {
    char rX = 'X';
    char rO = 'O';
    char rXO;
    boolean t = true;

   public char setXO() {

       if (t==true) {

       rXO = rX;

       } else if (t==false) {

       rXO = rO;

       }
       return rXO;
   }  

}
share|improve this question
1  
Change t to its logical not (i.e, its inverse), then return rx0: t = !t; return rx0; This will leave t properly set for you when you come back into the function. – Pete Wilson Nov 6 '11 at 17:52
You can use rXO = t ? rX : r0; instead of if(){} else if(){} – Vladimir Nov 6 '11 at 17:55
Overengineered, much? :) (r.e. original question) – Chris Dennett Nov 6 '11 at 18:03

5 Answers

how about:

return (t = !t) ? rO : rX;
//        ^ invert t every time
//                   ^ t changes every time, so the return value changes every time

the following code:

public class XOChecker {
    char rX = 'X';
    char rO = 'O';
    boolean t = true;

    public char setXO() {
        return (t = !t) ? rX : rO;
    }  

    public static void main(String [] args) {
        XOChecker xo = new XOChecker();
        for (int i = 0; i < 100 ; ++i) {
            System.out.print(xo.setXO());
        }
    }
}

outputs:

OXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOX
share|improve this answer
Try that and all I get is x returned every time. – Brandon Cruz Nov 6 '11 at 18:16
@BrandonCruz are you sure you wrote (t = !t) and not (t == !t)? – Binyamin Sharet Nov 6 '11 at 18:16
Yes I am sure, I copy and pasted the code. – Brandon Cruz Nov 6 '11 at 18:39
1  
Can you show the code that calls the method? I suspect that you create a new object each time. – Binyamin Sharet Nov 6 '11 at 18:44
Im not on a pc right now but some like this – Brandon Cruz Nov 6 '11 at 19:36
show 2 more comments
public class XOChecker {

    char xo = 'O';

    public char setXO(){
        xo = (xo=='O')?'X':'O';
        return xo;
    }

}

Alternatively: xo = (char)('X'-xo+'O');

And finally: xo^='X'^'O';

Or shorter:

public char setXO(){
    return xo^=23;
}
share|improve this answer
t = !t;
if(t) {
  return rX;
} else {
  return rO;
}

BTW, the name of the method is misleading. It should be getSomething, not setSomething, based on what it does.

share|improve this answer

The problem with your attempt is :

You are not changing value of t, after calling the method. Also else if (t==false) is equivalent to else

You have the change the value of t each time you call the method. Something like :

if(t)
{
   t = false;
   return rX;
}
else
{
   t = true;
   return rO;
}
share|improve this answer
  • Declare constants as static final (or get rid of them completely).

  • Declare everything used only internally private.

  • Unlike other replies, don't do assignment inside expressions.

  • Use more meaningful names.

Here goes:

public class XOChecker
{
    private static final char REPLY_TRUE = 'X';
    private static final char REPLY_FALSE = 'O';

    private boolean t = true;

    public char toggle()
    {
        final char result = t ? REPLY_TRUE : REPLY_FALSE;
        t = !t;
        return result;
    }
}
share|improve this answer
Okay this code kinda works, but I have to call the method 2 times to get it to switch back and forth I can only get it to work in the order of the buttons, which won't work for tic tac toe. – Brandon Cruz Nov 7 '11 at 17:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.