main.java
来自「这是按照一些说明说」· Java 代码 · 共 29 行
JAVA
29 行
/*
* main.java
*
* Created on 2007年6月8日, 下午2:44
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package com.luhan.main;
import com.luhan.read.*;
/**
*
* @author Administrator
*/
public class main {
/** Creates a new instance of main */
public main() {
}
public static void main(String [] args){
Client client = new Client();
Thread thread = new Thread(client);
thread.start();
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?