zoukankan      html  css  js  c++  java
  • 不利用临时变量,交换两个变量的值

    不利用临时变量,交换两个变量的值

    Java代码 
    public class ChangeValue 

         
        /** 
         * <不用第三个变量,交换两个变量的值>
         */ 
        public static void main(String[] args) 
        { 
            //方法一  精简,一行代码搞定  
            int x = 3, y = 7, t = 123; 
            System.out.printf("x = %d, y = %d\n", x, y); 
            x = y + 0 * (y = x);  
            System.out.printf("x = %d, y = %d\n", x, y); 
             
            //方法二   简单明了  
            int p = 4, q = 9; 
            System.out.printf("p = %d, q = %d\n", p, q); 
            p = p + q; //7 
            q = p - q; // 7-5=2  q == p 
            p = p - q; //7-2   
            System.out.printf("p = %d, q = %d\n", p, q); 
             
            //方法三  兼容,支持Integer.MAXVALUE的+操作   
            int a = 2, b = 5; 
            System.out.printf("a = %d, b = %d\n", a, b); 
            a ^= b; 
            b ^= a; 
            a ^= b; 
            System.out.printf("a = %d, b = %d\n", a, b); 
             
            //方法四  字符串 数组 
            String s1 = "111", s2 = "222"; 
            System.out.printf("s1 = %s, s2 = %s\n", s1, s2); 
            s1 = s1 + "," + s2; 
            s2 = s1; 
            s1 = s1.split(",")[1]; 
            s2 = s2.split(",")[0]; 
            System.out.printf("s1 = %s, s2 = %s\n", s1, s2); 
             
            //方法五  字符串 表达式(类似方法一) 
            String str1 = "aaa", str2 = "bbb"; 
            System.out.printf("str1 = %s, str2 = %s\n", str1, str2); 
            str1 = str2 + ((str2 = str1) == "" ? "" : ""); 
            System.out.printf("str1 = %s, str2 = %s\n", str1, str2); 
        } 
         
    }

  • 相关阅读:
    JSON,数组根据字段多次分组
    .net c#后台请求接口
    数组的高级应用含ES6 for of 用法
    js获取当前页面url网址信息
    资源管理神器Clover
    ES6的7个实用技巧
    单标签实现气泡三角形
    移动端--上拉加载更多
    checkbox对齐-复选框图标
    textarea显示源代码
  • 原文地址:https://www.cnblogs.com/qiuh/p/2778060.html
Copyright © 2011-2022 走看看