commandwords.java

来自「现在在国外大学里最流行的java学习软件,同时还有大量的example,在名为p」· Java 代码 · 共 68 行

JAVA
68
字号
import java.util.HashMap;/** * This class is part of the "World of Zuul" application.  * "World of Zuul" is a very simple, text based adventure game. *  * This class holds an enumeration of all command words known to the game. * It is used to recognise commands as they are typed in. * * @author  Michael Kolling and David J. Barnes * @version 2006.03.30 */public class CommandWords{    // A mapping between a command word and the CommandWord    // associated with it.    private HashMap<String, CommandWord> validCommands;    /**     * Constructor - initialise the command words.     */    public CommandWords()    {        validCommands = new HashMap<String, CommandWord>();        validCommands.put("go", CommandWord.GO);        validCommands.put("help", CommandWord.HELP);        validCommands.put("quit", CommandWord.QUIT);    }    /**     * Find the CommandWord associated with a command word.     * @param commandWord The word to look up.     * @return The CommandWord correspondng to commandWord, or UNKNOWN     *         if it is not a valid command word.     */    public CommandWord getCommandWord(String commandWord)    {        CommandWord command = validCommands.get(commandWord);        if(command != null) {            return command;        }        else {            return CommandWord.UNKNOWN;        }    }        /**     * Check whether a given String is a valid command word.      * @return true if it is, false if it isn't.     */    public boolean isCommand(String aString)    {        return validCommands.containsKey(aString);    }    /**     * Print all valid commands to System.out.     */    public void showAll()     {        for(String command : validCommands.keySet()) {            System.out.print(command + "  ");        }        System.out.println();    }}

⌨️ 快捷键说明

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