結合指派運算符號
|
說 明 |
+= |
x+=y相當於x=x+y |
-= |
x-=y相當於x=-+y |
*= | x+=y相當於x=x+y |
/= | x+=y相當於x=x+y |
%= | x%=y相當於x=x%y |
範例程式 |
- Ch1_18 .java
package chapter; public class Ch1_18 { public static void main(String[] args) { int i = 1; int z = 55; z += i; //進行指定運算 i += 2;// 會進行運算 String s = "5"; s += 2;// 會變成文字串接 System.out.println("i=" + i); System.out.println("s=" + s); System.out.println("z=" + z); } } |
沒有留言:
張貼留言