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

📄 parser.java

📁 现在在国外大学里最流行的java学习软件,同时还有大量的example,在名为project的文件里.安装好后用bluej打开peoject的例子,可以进行你想要的任何变化.同时可以了解大量的源码
💻 JAVA
字号:
import java.util.Scanner;/** * A class that reads input lines from the user. * Input is filtered via getCommand for valid commands. * * @author  Michael Kolling and David J. Barnes * @version 2006.03.30 */public class Parser {    // Hold all valid command words.    private CommandWords commands;    private Scanner reader;    public Parser()     {        commands = new CommandWords();        reader = new Scanner(System.in);    }    /**     * Read the next command from the user.     * The returned command will be valid.     * @return A valid command.     */    public String getCommand()     {        String command = null;        do {           // Print a prompt.            System.out.print("> ");                        String word = reader.next();            // Discard the rest of the line.            readLine();            if(commands.isCommand(word)) {                command = word;            }            else{                System.out.println("Unrecognized command: " + word);                System.out.print("Valid commands are: ");                commands.showAll();            }        } while(command == null);            return command;    }    /**     * Print out a list of valid command words.     */    public void showCommands()    {        commands.showAll();    }    /**     * @return A line of text from the user.     */    public String readLine()    {        return reader.nextLine();    }}

⌨️ 快捷键说明

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