Why this doesn\'t work? I get compiler error \"Cannot make static reference to the non static method print...\"
public class Chapter3 { public void print
Just in case if you are trying to apply an instance method from the same object where your code runs
Arrays.asList("a", "b", "c").forEach(this::print);