簡體   English   中英

如何避免if語句java7或使代碼更具可讀性

[英]How to avoid if statements java7 or make code more readable

我正在使用java7中的解析方法,因此在我的代碼中不允許使用流,lambda。 該代碼正在解析諸如1-9-2--1 2E-5 - 9E2"類的表達式,其中E210^2作為解析的結果,我得到了兩個數字的String[] :范圍的第一個數字和最后一個號碼。

我想實現的是使代碼更具可讀性,也許可以避免if語句更改為某種模式。 或更改算法。 第一個想法是將每個if語句移至另一個方法。 但是也許還有另一種方式。

    /**
 * @param text - analyzes the text below for the occurrence of a range of two numbers
 * as a character to the range we use '-'
 * the most advanced example for analysis is the one in which there are the most minus signs e. g.
 * "-5e-2 - -2e-1" as text
 */
public static String[] prepareRangeNumberToCompare(String text) {
    String textToBeAnalyzed = text.trim();
    String[] splitText = textToBeAnalyzed.split("-");

    //check simple case: (e. g.  "0 - 10")
    if (splitText.length < 2) {
        return new String[] { text };
    }
    else if (splitText.length == 2) {
        return splitText;
    }
    String firstNumber = splitText[0];
    String secondObject = splitText[2];
    //check the occurrence of the minus sign at the beginning (e.g. "-1 - 2")
    List<String> asList = new LinkedList<String>(Arrays.asList(splitText));
    if (text.startsWith("-")) {
        firstNumber = "-" + splitText[1];
        asList.remove(0);
    }

    //check the occurrence of the minus sign after the first occurrence of 'e|E' (e.g. "2E-5 - 9E2")
    if (asList.size() > 2 && (firstNumber.endsWith("E") || firstNumber.endsWith("e"))) {
        firstNumber = firstNumber + "-" + asList.get(1);
        asList.remove(1);
        secondObject = asList.get(1);
    }

    //check the occurrence of the minus sign before second text (e.g "-10 - -1")
    if (asList.size() > 2 && (asList.get(1).isEmpty() || asList.get(1).matches("\\s+"))) {
        secondObject = "-" + asList.get(2);
        asList.remove(1);
    }

    //check the occurrence of the minus sign after the second occurrence of 'e|E' (e.g. "2E-5 - 9E-2")
    if (asList.size() > 2 && (secondObject.endsWith("E") || secondObject.endsWith("e"))) {
        secondObject = secondObject + "-" + asList.get(2);
        asList.remove(1);
    }

    //if we still have more than 2 items in the list, the user has supplied a wrong range
    if (asList.size() > 2) {
        return new String[] { text };
    }

    return new String[] { firstNumber, secondObject };
}

有一個更好的方法可以實現您的目標:

public static List<String> prepareRangeNumberToCompare2(String text) {
    List<String> result = new ArrayList<>();
    String numberPattern = "-?[\\d+](E-?\\d+)?"; // Pattern for a single number.
    String spacesPattern = "\\s*"; // Pattern for allowing spaces.
    String rangePattern = String.format("(%s)%s-%s(%s)", numberPattern, spacesPattern, spacesPattern,numberPattern); // final pattern is: "(-?[\\d+](E-?\\d+)?)\\s*-\\s*(-?[\\d+](E-?\\d+)?)"

    Pattern pattern = Pattern.compile(rangePattern);
    Matcher matcher = pattern.matcher(text);

    while (matcher.find()) {
        result.add(matcher.group(1));
        result.add(matcher.group(3));
    }

    return result;
}

順便說一句-無需檢索String數組。 字符串列表是首選。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM