Java學習-異或應用__Java

來源:互聯網
上載者:User

異或應用

package basis.day02;/** * 異或的重要用途:轉換m,n的值 * @author LENOVO * */public class TestXor {    public static void main(String[] args){        /*         * 交換m,n的值         */        int m = 12;        int n = 5;        /*         * 方法一:設定一個中間變數temp         */        //System.out.println("m = " + m + " n = " + n);        //System.out.println("交換");        //int temp ;        //temp = m;        //m = n;        //n = temp;        //System.out.println("m = " + m + " n = " + n);        /*         * 疊加,再減。缺點不能計算過大的數         */        //System.out.println("m = " + m + " n = " + n);        //System.out.println("交換");        //m = m + n;        //n = m - n;        //m = m - n;         //System.out.println("m = " + m + " n = " + n);        /*         * 利用異或的特性         * 兩個相同的數進行異或(因為每一位都相同)得0,0與任何數異或還是這個數(0,1異或得1;0,0異或得0)         * 因此三個數進行異或(其中有兩個相同的數)結果為不同於其他兩個的數         */        System.out.println("m = " + m + " n = " + n);        System.out.println("交換");        m = m ^ n;          n = m ^ n;  //(m^n)^n        m = n ^ m;  //n^(m^n)   n已經改變為m的值(12)(因此運算式最後結果是n的值賦值給m)        System.out.println("m = " + m + " n = " + n);    }}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.