common.java
来自「原创」· Java 代码 · 共 19 行
JAVA
19 行
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 + =
减小字号Ctrl + -
显示快捷键?