countrypath.java
来自「good project for programmer,,」· Java 代码 · 共 43 行
JAVA
43 行
package com.sillysoft.lux.util;import com.sillysoft.lux.Country;//// CountryPath.java//// Created by dustin on Thu Nov 08 2001.// /**This class represents a path of connected countries. It is used to store paths through the graph of countries.*/public class CountryPath extends CountryElement{private int[] history;public CountryPath( Country country, int newValue, int[] newHistory) { next = null; countryCode = country.getCode(); orderValue = newValue; history = newHistory; } public int[] getHistory() { return history; } }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?