熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> Java核心技術 >> 正文

Java移位運算機制

2022-06-13   來源: Java核心技術 

  舉例代碼

  public class Console {

      public static void main(String[] args) {

          int i = >> ;

          long l = >> ;

          Systemoutprintln(the i is : + i);

          Systemoutprintln(the l is : + l);

      }

  }

  輸出

  the i is :

  the l is :

  從輸出可以看出兩數沒有變因為移位前Java首先把要移的位數和被移樹的位數求余數然後移動余數個位數在本例中求余數為沒有造成移動


From:http://tw.wingwit.com/Article/program/Java/hx/201311/25925.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.