Console類的常用方法

2021-07-24 08:11:16 字數 3368 閱讀 2037

int  console.read() 

返回鍵入字元對應的ascii碼

string console.readline(); 返回鍵入的字元

consolekeyinfo console.readkey();

public static void main()

while (cki.key != consolekey.escape);

}

// this example displays output similar to the following:

// press any combination of ctl, alt, and shift, and a console key.

// press the escape (esc) key to quit:

//

// a --- you pressed a

// k --- you pressed alt+k

// ► --- you pressed ctl+p

// --- you pressed rightarrow

// r --- you pressed shift+r

// --- you pressed ctl+i

// j --- you pressed alt+j

// o --- you pressed shift+o

// § --- you pressed ctl+u

console.readkey(boolean)

此方法引數為true時,按鍵值不會顯示在console上。

public static void main() 

(character '')", cki.key, cki.keychar);

} while (cki.key != consolekey.escape);

}

注意readkey()標紅色的部分與readkey(true)的區別

// this example displays output similar to the following:

// press any combination of ctl, alt, and shift, and a console key.

// press the escape (esc) key to quit:

//

// you pressed ctl+a (character '☺')

// you pressed c (character 'c')

// you pressed ctl+c (character '♥')

// you pressed k (character 'k')

// you pressed alt+i (character 'i')

// you pressed alt+u (character 'u')

// you pressed alt+shift+h (character 'h')

// you pressed escape (character '←')

void consloe.write()

void console.writeline();

有各種各樣的過載,關於各個類的,各種型別的,轉化成字串列印出來。

值得一說的是還可以按照指定的格式進行列印

// format a negative integer or floating-point number in various ways.

console.writeline("standard numeric format specifiers");

console.writeline(

"(c) currency: . . . . . . . . \n" +

"(d) decimal:. . . . . . . . . \n" +

"(e) scientific: . . . . . . . \n" +

"(f) fixed point:. . . . . . . \n" +

"(g) general:. . . . . . . . . \n" +

" (default):. . . . . . . . (default = 'g')\n" +

"(n) number: . . . . . . . . . \n" +

"(p) percent:. . . . . . . . . \n" +

"(r) round-trip: . . . . . . . \n" +

"(x) hexadecimal:. . . . . . . \n",

-123, -123.45f);

// format the current date in various ways.

console.writeline("standard datetime format specifiers");

console.writeline(

"(d) short date: . . . . . . . \n" +

"(d) long date:. . . . . . . . \n" +

"(t) short time: . . . . . . . \n" +

"(t) long time:. . . . . . . . \n" +

"(f) full date/short time: . . \n" +

"(f) full date/long time:. . . \n" +

"(g) general date/short time:. \n" +

"(g) general date/long time: . \n" +

" (default):. . . . . . . . (default = 'g')\n" +

"(m) month:. . . . . . . . . . \n" +

"(r) rfc1123:. . . . . . . . . \n" +

"(s) sortable: . . . . . . . . \n" +

"(u) universal sortable: . . . (invariant)\n" +

"(u) universal full date/time: \n" +

"(y) year: . . . . . . . . . . \n",

thisdate);

console的除錯方法

自 一 顯示資訊的命令 1 2 3 7 8 14 15 最常用的就是console.log了。二 佔位符 console上述的集中度支援printf的佔位符格式,支援的佔位符有 字元 s 整數 d或 i 浮點數 f 和物件 o 1 效果 三 資訊分組 1 2 3 7 8 25 26 效果 四 檢視物...

console 非常實用的方法

是否有前端小夥伴和我一樣,一直都console.log 列印資訊 最近看到篇國外文章寫到幾種常用console的方法,超實用,希望大家看完後能夠提高開發效率。文章都會先發布在 github 上 js 原始碼 上面這些方法可以接受多個引數 2 console.group console.group 列...

console比較實用的方法

控制台 console 是firebug的第乙個面板,也是最重要的面板,主要作用是顯示網頁載入過程中產生各類資訊。firebug內建乙個console物件,它提供了幾種方法,主要作用是顯示網頁載入過程中產生各類資訊。console.log 用來取代alert 或document.write 列印資訊...