⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ex_18b.java

📁 JAVA分布式程序学习的课件(全英文)
💻 JAVA
字号:
// program to illustrate the use of threads
// based on Deitel text ex. 13.3

import java.io.*;
import Server;

public class Ex_18b  
{
	
	public static void main(String[] args)
	{
           Server theServer = new Server();
	   for (int i=0; i<100; i++) 
              theServer.showMessage(i + "");
	}
} // end class Ex_18b


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -