VOOZH about

URL: https://dzone.com/articles/simplifying-nested-loops-with-java-8-lambdas

⇱ Simplifying Nested Loops With Java 8 Lambdas


Related

  1. DZone
  2. Coding
  3. Java
  4. Simplifying Nested Loops With Java 8 Lambdas

Simplifying Nested Loops With Java 8 Lambdas

A great way to keep looping code out of your main logic in Java 8 apps.

By Apr. 12, 16 · Code Snippet
Likes
Comment
Save
39.6K Views

Join the DZone community and get the full member experience.

Join For Free

This is just a quick tip for everyone who has to work with multi-dimensional arrays in Java 8 (or newer).

In this case, you might often end with code similar to this:

float[][] values = ...
for (int i = 0; i < values.length; i++) {
 for (int k = 0; k < values[i].length; k++) {
 float value = values[i][k];
 // do something with i, k and value
 }
}

If you are lucky, you can replace the loops with for-each loops. However, often the indices are required for computations inside the loop.

In such a case you can come up with a simple utility method that looks like this:

private void loop(float[][] values, BiConsumer<Integer, Integer> consumer) {
 for (int i = 0; i < values.length; i++) {
 for (int k = 0; k < values[i].length; k++) {
 consumer.accept(i, k);
 }
 }
}

We can now loop over array indices like this:

float[][] values = ...
loop(values, (i, k) -> {
 float value = values[i][k];
 // do something with i, k and value
});

This way you can keep the looping code out of your main logic.

Of course, you should change the shown loop() method so it fits your personal needs.

Java (programming language)

Published at DZone with permission of Michael Scharhag. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Top Java Security Vulnerabilities and How to Prevent Them in Modern Java
  • A Spring Boot App With Half the Startup Time
  • Implementing the Planning Pattern With Java Enterprise and LangChain4j
  • Getting Started With Agentic Workflows in Java and Quarkus

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

Let's be friends: