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); 
        } 
         
    }

  • 相关阅读:
    标准 IO 测试 可以打开多少流
    标准 IO fprintf 与 sprintf 函数使用
    标准 IO 测试 标准输出,输入,出错缓冲大小;全缓冲文本流大小
    标准 I/O (带缓冲)
    vim 中 ctags的应用
    链表实现队列操作
    数组实现循环队列
    数组实现顺序表
    数组结构实现顺序栈
    SDOI2019快速查询
  • 原文地址:https://www.cnblogs.com/qiuh/p/2778060.html
Copyright © 2011-2022 走看看