LinkedHashMap: функция в методе?

LinkedHashMap Объявлен как таковой:

public class Search {
    private LinkedHashMap<String, String> Pairs;

Что на самом деле делает метод readSurnames() со ссылкой на LinkedHashMap?

Является ли inputStream просто файлом, таким как текстовый файл?

Именно эта строка кода особенно смущает меня:

Pairs.put(currentLine, processName(currentLine));

ReadSurnames:

/**
     * Reads the surnames from the InputStream that was supplied on object
     * creation
     */
    public void readSurnames() {
        String currentLine;
        Scanner scanner = new Scanner(inputStream);

        while (scanner.hasNext()) {
            currentLine = scanner.nextLine();
            Pairs.put(currentLine, processName(currentLine));
        }

        try {
            inputStream.close();
            scanner.close();
        } catch (IOException e) {
            System.err
                    .println("An error occured closing the input stream and scanner");
        }
    }

Имя процесса:

/**
     * Takes an initial name and processed to produce a phonetic version that
     * can be compared against other processed names
     * 
     * @param name
     *            The original name unprocessed name
     * @return The phonetic equivalent of the input name
     */
    public String processName(String name) {

        name = processNonAlphabetic(name);
        name = processDiscardedLetters(name);
        name = processEquivalentLetters(name);
        name = processDuplicateEquivalentLetters(name);

        return name;
    }

1 ответ

Для каждой строки это сопоставление исходной строки с обработанной версией строки, поэтому позже вы можете получить доступ к обработанной версии, если у вас есть оригинал.

Другие вопросы по тегам