Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,855 questions

51,776 answers

573 users

How to iterate over a stream with indices in Java

1 Answer

0 votes
import java.util.stream.IntStream;

public class MyClass {
    public static void main(String args[]) {
        String[] arr = { "java", "c", "c++", "python", "c#"  };
 
        IntStream.range(0, arr.length)
                .mapToObj(index -> String.format("%d -> %s", index, arr[index]))
                .forEach(System.out::println);
    }
}




/*
run:

0 -> java
1 -> c
2 -> c++
3 -> python
4 -> c#

*/

 



answered Mar 16, 2023 by avibootz

Related questions

2 answers 140 views
140 views asked Sep 28, 2019 by avibootz
4 answers 153 views
153 views asked Nov 23, 2023 by avibootz
2 answers 173 views
1 answer 118 views
4 answers 165 views
165 views asked Mar 16, 2023 by avibootz
...