I'm just a beginner in Java. When should I use double colon?
import java.util.stream.*;
class GFG {
public static void main(String[] args)
{
// Get the stream
Stream<String> stream= Stream.of("Geeks", "For", "Geeks", "A", "Computer", "Portal");
// Print the stream
// using double colon operator
stream.forEach(System.out::println);
}
}