91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java中操作符有哪些

發布時間:2021-08-26 11:12:11 來源:億速云 閱讀:144 作者:小新 欄目:編程語言

這篇文章將為大家詳細講解有關java中操作符有哪些,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

0x001 算數運算符

int num1 = 1, num2 = 2;
    System.out.println(num1 + num2); // 3
    System.out.println(num1 - num2); // -1
    System.out.println(num1 / num2); // 0 
    System.out.println(num1 * num2); // 2
    System.out.println(num1 % num2); //1

0x002 自增自減

System.out.println(num1++); // 1
    System.out.println(num1); // 2
    System.out.println(num1--); // 2
    System.out.println(num1); // 1
    System.out.println(++num1); // 2
    System.out.println(--num1); // 1

0x003 關系操作符

System.out.println((num1 < num2)); // true
    System.out.println((num1 > num2)); // false
    System.out.println(num1 == num2); // false
    System.out.println(num1 != num2); // true

0x004 邏輯操作符

boolean boolean1 = false; 
    boolean boolean2 = true; 
    System.out.println(boolean1 && boolean2); // false
    System.out.println(boolean1 || boolean2); // true
    System.out.println(!boolean1); // true

0x005 直接操作符

int i1 = 0x2f;
    int i2 = 0x2F;
    int i3 = 0177;
    char c1 = 0xffff;
    byte b1 = 0x7f;
    short s1 = 0x7f;
    long l1 = 100L;
    long l2 = 100l;
    float f1 = 1;
    float f2 = 1f;
    float f3 = 1F;
    double d1 = 1d;
    double d2 = 1D;
    System.out.println(i1); // 47
    System.out.println(i2); //47
    System.out.println(i3); // 127
    System.out.println(c1); // 
    System.out.println(b1); // 127
    System.out.println(s1); // 127
    System.out.println(l1); // 100
    System.out.println(l2); // 100
    System.out.println(f1); // 1.0
    System.out.println(f2); // 1.0
    System.out.println(f3); // 1.0
    System.out.println(d1); // 1.0
    System.out.println(d2); // 1.0

0x006 三元運算符

int a = 0;
    boolean isSuccess = false;
    a = isSuccess ? 1 : 2;
    System.out.println(a);// 2

0x007 字符串+、+=

String str = "";
    str = str + "1";
    str += "2";
    System.out.println(str);

0x008 類型轉化

int i = 100;
    long long1 = (long) i;
    System.out.println(long1);// 100
    long1 = i;
    System.out.println(long1);// 100
    long long2 = (long) 200;
    System.out.println(long2);// 200
    i = (int) long1;
    System.out.println(i); // 200
    
    float float1=0.1f; 
    float float2=0.9f;
    System.out.println((int) float1);// 轉化int會被舍去
    System.out.println((int) float2);// 轉化int會被舍去

關于“java中操作符有哪些”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

濮阳县| 惠水县| 韶山市| 久治县| 杨浦区| 台湾省| 芦山县| 临桂县| 高安市| 盐池县| 出国| 中牟县| 德令哈市| 栾川县| 天水市| 玉树县| 锡林浩特市| 历史| 磐安县| 罗平县| 怀仁县| 青川县| 库尔勒市| 凌源市| 平阴县| 厦门市| 平乐县| 舞阳县| 黄梅县| 珠海市| 蕉岭县| 镇江市| 长阳| 喀什市| 民权县| 郓城县| 克什克腾旗| 乾安县| 黄平县| 通辽市| 祁阳县|