數字格式化 Class類和Console類

2021-09-27 10:26:37 字數 516 閱讀 5834

1.數字格式化

format方法

string s=string.format():類似c語言,想輸出什麼就自己填

2..class類和console類

class可以得到類的例項

例如:、

class a=new class("hello"):

hellow h=(hellow)a.newinstace();

console類

不讓文字回顯即不在命令列顯示就用console類

console cons=system.console();

char passwd=cons.readpassword();

//console類

console cons=system.console();

char chars;

chars=cons.readpassword();

system.out.println(chars.tostring());

格式化數字

格式化數字 下表是可在format函式中用於格式化數字的字元。字元 說明0 數字佔位符。顯示乙個數字或0。如果表示式在格式字串中出現0的位置上有數字,則顯示該數字 否則在該位置顯示0。如果數字的位數少於格式表示式中 0 的個數 小數點任一側 則顯示前導零或尾隨零。如果數字的小數點分隔符右側的位數多於...

數字格式化

double pi 3.1415927 圓周率 取一位整數 system.out.println new decimalformat 0 format pi 3 取一位整數和兩位小數 system.out.println new decimalformat 0.00 format pi 取兩位整數和...

數字格式化

x 3.1415926535 round x,2 out 1 3.14in 2 round x,2 out 2 3.14in 3 當位於中間時候,取整偏向最近的偶數 y 1.5 z 2.5 round y out 3 2in 4 round z out 4 2in 5 round 1.6 out 5...