java - 将 for 循环转换为 forEach Lambda

标签 java arrays lambda java-8

我正在学习 Lambda,但在转换时遇到了一些困难。我需要引入一个 List,使用 Arrays 类的 asList 方法将 Field 类的 value 方法提供的数组复制到该列表中。然后我需要使用 lambda 表达式作为其参数,将 for 循环转换为 forEach 内部循环。 lambda 表达式的主体将是 for 循环当前主体的代码。我相信我的 List 语法是正确的( List list = Arrays.asList(data); ),但我很难弄清楚如何处理 for 循环,甚至从哪里开始。任何指导将不胜感激。谢谢

public AreaData(String... data)
{
    List<String> list = Arrays.asList(data);


    /* Assert to check that the data is of the expected number of items. */
    assert data.length == Field.values().length : "Incorrect number of fields";

    for( Field field : Field.values() )
    {
        int width;
        String formatString;
        if( field == NAME )
        {
            /* Get the name value and store it away. */
            String value = data[field.position()];
            strings.put(field, value);
            /* Get the needed width of the field to hold the name. */
            width = max(value.length(), field.getFieldHeading().length());
            formatString = "s";
        } else
        {
            /* If the value is of the wrong form, allow the NumberFormatException
               to be thrown. */
            Double value = Double.parseDouble(data[field.position()]);
            /* Assertion to check value given is positive.  */
            assert value.compareTo(0.0) >= 0 :
                    "invalid " + field.name() + " value=" + value.toString();
            /* Get the field value and store it away. */
            doubles.put(field, value);
            /* Get needed width of the field to hold the heading or value. */
            width = max((int) log10(value) + MINIMUM,
                    field.getFieldHeading().length() + HEADING_SEPARATION);
            formatString = ".2f";
        }
        /* Keep the widest value seen, and record the corresponding format. */
        if( width > WIDTHS.get(field) )
        {
            WIDTHS.put(field, width);
            FORMATS.put(field, "%" + width + formatString);
        }
    }
    /* Optimization: to avoid doing this every time a comparison is made. */
    this.nameCaseless = strings.get(NAME).toUpperCase().toLowerCase();
}

最佳答案

Stream.of(Field.values()).forEach() 应该可以解决问题:

public AreaData (String... data) {
        List<String> list = Arrays.asList(data);
        /* Assert to check that the data is of the expected number of items. */
        assert data.length == Field.values().length : "Incorrect number of fields";
        int width;
        String formatString;
        Stream.of(Field.values()).forEach(
                field -> {
                    if (field == NAME) {
                        /* Get the name value and store it away. */
                        String value = data[field.position()];
                        strings.put(field, value);
                        /* Get the needed width of the field to hold the name. */
                        width = max(value.length(), field.getFieldHeading().length());
                        formatString = "s";
                    } else {
                        /* If the value is of the wrong form, allow the NumberFormatException
                           to be thrown. */
                        Double value = Double.parseDouble(data[field.position()]);
                        /* Assertion to check value given is positive.  */
                        assert value.compareTo(0.0) >= 0 :
                                "invalid " + field.name() + " value=" + value.toString();
                        /* Get the field value and store it away. */
                        doubles.put(field, value);
                        /* Get needed width of the field to hold the heading or value. */
                        width = max((int) log10(value) + MINIMUM,
                                field.getFieldHeading().length() + HEADING_SEPARATION);
                        formatString = ".2f";
                    }
                    /* Keep the widest value seen, and record the corresponding format. */
                    if (width > WIDTHS.get(field)) {
                        WIDTHS.put(field, width);
                        FORMATS.put(field, "%" + width + formatString);
                    }
                });

        /* Optimization: to avoid doing this every time a comparison is made. */
        this.nameCaseless = strings.get(NAME).toUpperCase().toLowerCase();
    }

也就是说,您应该考虑以下经验法则:

A lambda expression should be ideally up to 3 lines of code and in no case more than 5 lines!

关于java - 将 for 循环转换为 forEach Lambda,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28511701/

相关文章:

Java - 每行缺少第一个字母

javascript - 从字符串元素数组创建 DOM 元素,然后将结果加入 render()

javascript - 遍历数组并将重复项移动到单独的数组

javascript - 在javascript中非随机地从数组中选取颜色

c# - 将此 LINQ 表达式转换为 Lambda

java - 设置 Spring bean 的子属性

java - 如何查找日期差异

python - lambda 函数对字典中值的乘积求和

c# - 如何在 Entity Framework 上使用高性能的lambda表达式

java - Java 中的 Fork Join 矩阵乘法