?? nocomment.java
字號:
//==============================================================
// NoComment.java - Demonstrates Java comment styles
//
// Java學習源代碼檢索系統 Ver 1.0 20031015 免費正式版
// 版權所有: 中國IT認證實驗室(www.ChinaITLab.com)
// 程序制作: ChinaITLab網校教研中心
// 主頁地址: www.ChinaITLab.com 中國IT認證實驗室
// 論壇地址: bbs.chinaitlab.com
// 電子郵件: Java@ChinaITLab.com
//==============================================================
/* This paragraph shows that C-style comments
may extend for
several lines. */
/** The NoComment class demonstrates comment styles */
/** This and the last line are "Java Documentation Comments" */
class NoComment {
public static void main(String args[]) {
// This comment is not displayed
System.out.println("This string is displayed");
System.out.println( /* Embedded comment is not displayed */
"This string is also displayed");
/* This single-line C-style comment is not displayed */
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -