?? common.java
字號:
import java.lang.*;
import java.util.*;
class tt extends Object
{
/*
method: printMsg
params:
1. String msg
return type: void
create time: 2004-08-25 02:30:08
author: litertiger
*/
public static void printMsg(String msg)
{
System.out.println(new Date() + "\t:" + msg);
}
}
public class Common{
/**
* Method main
*
*
* @param args
*
*/
public static void main(String[] args) {
// TODO: Add your code here
tt t=new tt();
tt.printMsg("what is you name ");
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -