码迷,mamicode.com
首页 > 编程语言 > 详细

Java中的赋值运算符

时间:2018-08-01 18:15:22      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:分享   操作   main   java   public   技术   string   使用   out   

赋值运算符是指为变量或常量指定数值的符号。如可以使用 “=” 将右边的表达式结果赋给左边的操作数。

Java 支持的常用赋值运算符,如下表所示:

技术分享图片

 

 1 public class HelloWorld{
 2     public static void main(String[] args) {
 3         int one = 10 ;
 4         int two = 20 ;
 5         int three = 0 ;
 6         three=one+two;
 7         System.out.println("three = one + two ==>"+three);
 8         three+=one;
 9         System.out.println("three += one ==>"+three);
10         three-=one;
11         System.out.println("three -= one ==>"+three);
12         three*=one;
13         System.out.println("three *= one ==>"+three);
14         three/=one;
15         System.out.println("three /= one ==>"+three);
16         three%=one;
17         System.out.println("three %= one ==>"+three);
18 
19     
20     }
21 }

 

 

摘自:慕课网

Java中的赋值运算符

标签:分享   操作   main   java   public   技术   string   使用   out   

原文地址:https://www.cnblogs.com/hkgov/p/9402551.html

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