如何在 foreach 循环内递增计数

huangapple go评论60阅读模式
英文:

How to increment count within foreach loop

问题

public static void main(String[] args) {
    int count = 0;
    List<String> namesList = new ArrayList<>();
    namesList.add("gaurav");
    namesList.add("deepak");
    namesList.add("anit");
    namesList.add("garvit");
    namesList.add("satvir");
    namesList.add("lino");
    namesList.add("gogo");
    namesList.forEach(names -> {
        if (names.startsWith("g")) {
            count++;
        }
    });
    if (count > 1) {
        System.out.println("executed");
    }
}

在增加计数时遇到以下错误:
在封闭范围中定义的局部变量 "count" 必须是 final 或者是 effectively final

英文:

Below is my code:

public static void main(String[] args) {
	int count = 0;
	List&lt;String&gt; namesList = new ArrayList&lt;&gt;();
	namesList.add(&quot;gaurav&quot;);
	namesList.add(&quot;deepak&quot;);
	namesList.add(&quot;anit&quot;);
	namesList.add(&quot;garvit&quot;);
	namesList.add(&quot;satvir&quot;);
	namesList.add(&quot;lino&quot;);
	namesList.add(&quot;gogo&quot;);
	namesList.forEach(names -&gt; {
		if (names.startsWith(&quot;g&quot;)) {
			count++;
		}
	});
	if (count &gt; 1) {
		System.out.println(&quot;executed&quot;);
	}
}

Getting the below error while incrementing count:
Local variable count defined in an enclosing scope must be final or effectively final

答案1

得分: 1

不要增加一个变量。

筛选计数

long count = namesList.stream()
        .filter(name -> name.startsWith("g"))
        .count();

这样更易于阅读和理解,而且代码更简洁。

英文:

Don't increment a variable.

Stream, filter and count:

long count = namesList.stream()
    .filter(name -&gt; name.startsWith(&quot;g&quot;))
    .count();

It's eaisier to read and understand, and it's less code.

答案2

得分: 0

使用 AtomicInteger 进行如下操作:

AtomicInteger count = new AtomicInteger();
namesList.forEach(names -> {
    if (names.startsWith("g")) {
        count.getAndIncrement();
    }
});
if (count.get() > 1) {
    System.out.println("executed");
}

或者使用 Stream API 进行如下操作:

long count = namesList.stream()
                      .filter(name -> name.startsWith("g")) // 使用条件进行过滤
                      .count(); // 然后计数
英文:

Use AtomicInteger for this

AtomicInteger count = new AtomicInteger();
namesList.forEach(names -&gt; {
    if (names.startsWith(&quot;g&quot;)) {
        count.getAndIncrement();
    }
});
if(count.get() &gt; 1) {
    System.out.println(&quot;executed&quot;);
}

Or using Stream API

long count = namesList.stream()
                      .filter(name -&gt; name.startsWith(&quot;g&quot;)) // filter with condition
                      .count(); // then count

答案3

得分: 0

你也可以使用流来实现这个。使用 filter() 来查找以 g 开头的名称,使用 findFirst() 来找到第一个。如果没有符合条件的,将返回 null

String result = namesList
       .stream()
       .filter(name -> name.startsWith("g"))
       .findFirst()
       .orElse(null);
英文:

You can do that with a stream as well. Use filter() to find the names starting with g, use findFirst(), to find the first one. If there is none, this will return null.

String result = namesList
       .stream()
       .filter(name -&gt; name.startsWith(&quot;g&quot;))
       .findFirst()
       .orElse(null);

huangapple
  • 本文由 发表于 2020年7月25日 14:48:56
  • 转载请务必保留本文链接:https://go.coder-hub.com/63085274.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定