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

📄 common.java

📁 原创
💻 JAVA
字号:
package serviceServer;

/**
 * 定义整个系统用到的参数
 */
public class Common {

	public static boolean sDebug = true;
	public static boolean sInit = true;// 标识系统为启动态还是正常态
	public static boolean sContinue = true;

	public static int sScreenWidth;// 被服务端的桌面的宽度
	public static int sScreenHeight;// 被服务端的桌面高度

	public static int sEPort = 58484;// 事件监听端口
	public static int sIPort = 58787;// 图像接收服务器监听端口

}

⌨️ 快捷键说明

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