Java C格式輸入利用printf函數

來源:互聯網
上載者:User
我們在利用System.out.print和System.out.println時,常常苦於它沒有輸出格式而編寫複雜的代碼,甚至利用TextFormat等格式輸出類,其實這些都不需要,java有自己的格式化輸入方法,完全可以媲美C的格式輸入。它就是System.out.printf函數。
例如:我們用
System.out.printf("列印從%3d到%3d整數\n", 1, 100);
運行後的輸出結果是:
列印從  1到100整數

上面的%3d表示輸入整數,並且至少補齊3位。

System.out.printf具體的使用方法有:
System.out.printf("%f",d);      //"f"表示格式化輸出浮點數。
System.out.printf("%9.2f",d);   //"9.2"中的9表示輸出的長度,2表示小數點後的位元。
System.out.printf("%+9.2f",d);  //"+"表示輸出的數帶加號或減號。
System.out.printf("%-9.4f",d);  //"-"表示輸出的數靠左對齊(預設為靠右對齊)。
System.out.printf("%+-9.3f",d); //"+-"表示輸出的數帶加號或減號且靠左對齊。
System.out.printf("%d",i);      //"d"表示輸出十進位整數。
System.out.printf("%6d",i);     //表示輸入十進位整數,並且至少補齊6位。
System.out.printf("%o",i);      //"o"表示輸出八進位整數。
System.out.printf("%x",i);      //"x"表示輸出十六進位整數。
System.out.printf("%#x",i);     //"x"表示輸出帶有十六進位標誌的整數。
System.out.printf("%s",s);      //"s"表示輸出字串。

文章地址:http://javapub.iteye.com/blog/719865

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.