码迷,mamicode.com
首页 > 其他好文 > 详细

不用第三个变量,互换两个变量的值

时间:2015-04-24 15:55:57      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:

最近看到比较牛的互换变量值的书,来分享一下:

public class VariableExchange {

    public static void main(String[] args) {
        int a=1;
        int b=4;
        a=a ^ b;
        System.out.println(a);
        b=b ^ a;
        System.out.println(b);
        a=a ^ b;
        System.out.println(a+"\t"+b);
    }

}

 

不用第三个变量,互换两个变量的值

标签:

原文地址:http://www.cnblogs.com/leonxiaosi/p/4453518.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!