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

📄 controller.java

📁 Remote Internet Connect简化了从其它运行操作系统的机子上将一个Linux系统连接到Internet的过程。用户可以用一个简单的GUI加快连接、断开连接、或查看谁在线上。
💻 JAVA
字号:
public class Controller {
	private boolean inUse = false;
	
	public synchronized void askFor() {
		while (inUse)
			try {
				wait();
			} catch (InterruptedException e) {
				System.out.println("Exception");	
			}
		inUse=true;
	}
	
	public synchronized void relinquish() {
		inUse=false;
		notify();	
	}		
}

⌨️ 快捷键说明

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