Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Here is the question: write a method that swaps two variables. These two variables should be primitives. It doesn't need to be generic e.g. two int variables. Is there a way?!

share|improve this question
Safety first! :) – crunchdog Sep 1 '09 at 15:53
@crunchdog Sometime I shall understand Java! – AraK Sep 1 '09 at 16:01
Chk this out.More info on swap by reference. cs.utsa.edu/~wagner/CS2213/swap/swap.html Chk this out.More info on swap by reference. – Arun Sam Duke Jun 28 '12 at 7:27

8 Answers

up vote 20 down vote accepted

Without using an array or objects, no, it is not possible to do it within a method.

share|improve this answer
Thanks. It puzzled me for a while. I thought there should be a way! :) – AraK Sep 1 '09 at 15:59
2  
btw, arrays are objects, so you really only needed to say objects. from java.sun.com: "An array is a container object that holds a fixed number of values of a single type." being picky i know :) – geowa4 Sep 1 '09 at 16:00
So how is it possible by using arrays or objects? Are these arrays or objects not used inside a method? Are they global? Or can one swap objects inside a method using local arrays or objects? – c0d3Junk13 Mar 21 '12 at 19:50

Check out this JavaWorld article that explains it in detail:

http://www.javaworld.com/javaworld/javaqa/2000-05/03-qa-0526-pass.html

A swap of two primitives will never work because primitives are passed by value in Java. You can't even write a method to swap two objects for that matter.

Like @Thomas said, the only thing you could do is have your primitives contained within other objects/arrays and modify those.

share|improve this answer

In java5, the closest I can think of, which may help you, is :

The AtomicInteger class (and others) have getAndSet() atomic methods ..

share|improve this answer
The question is specifically about primitive types. These are objects. – Thomas Owens Sep 1 '09 at 15:49
@Thomas: "should be primitives" – geowa4 Sep 1 '09 at 15:58
@Thomas OK. I don't have a clue then. @geowa4 Thanks for your support :-) – KLE Sep 1 '09 at 16:17

To write a swap method that swaps primitives you'd have to have the concept of "out" variables, i.e. variables whose values are passed up to the calling context. C# has those but you must still specify that they're out variables.

share|improve this answer

As Thomas Owens said. You could probably do it in C by passing variables by &reference, but afaik not in Java without using objects.

share|improve this answer

This function will swap two ints

Integer[] swap(int a, int b){
    return new Integer[]{b,a};
}
share|improve this answer

You can write method which will return two-elements array which contents are swapped parameters to that method.

static Object[] swap(Object a, Object b) {
    return new Object[]{b,a};
}
share|improve this answer
public class Swap
{
    public static void main (String[]args)
    {
        int y = 5;
        int x = 4;
        int c;

        System.out.println("y = "+y);
        System.out.println("x = "+x);

        c=x; //c = 4
        x=y; //x = 5;
        y=c;

        System.out.println("\n");
        System.out.println("y= "+y);
        System.out.println("x= "+x);
    }    
}
share|improve this answer

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.