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

📄 globalpath.java

📁 用于求解TSP(Traveling salesman problem
💻 JAVA
字号:
/**
 * Description: Tdefine some global path.
 *
 * @ Author        Create/Modi     Note
 * Xiaofeng Xie    Nov 9, 2000    xiaofengxie@tsinghua.org.cn
 *
 * @version 1.0
 * @Since MAOS1.0
 */

package Global.define;

public class GlobalPath {
  public static String TEMPDir = System.getProperty("java.io.tmpdir");
  public static String USERDir = System.getProperty("user.dir");
  public static String UserHome = System.getProperty("user.home");

  public static final String DefaultPATH = "default";               //default
  public static final String SettingPATH = "setting";               //setting
  public static final String LibPATH = "lib";


  public static final String ProjectPath = "myprojects";            // initial projects location

  public static String TempPATH = "temp";                     //Temp file
  public static String CURRENT_WORK_PATH = TempPATH;                     //current Temp path
  public static String CURRENT_PRJ_PATH = ProjectPath;                     //current Temp path
  public static String CURRENT_PATH = "current";                     //current Temp path

  public static String CURRENT_TEMP_PATH = TempPATH;                     //current Temp path

}

⌨️ 快捷键说明

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