Is there a method reference for a no-op (NOP) that can be used for anything lambda?
问题 This may sounds like a strange question, but is there a way to refer to a standard no-op (aka null operation, null-pattern method, no-operation, do-nothing method) method for a Lambda in Java 8. Currently, I have a method that takes a, say, void foo(Consumer<Object>) , and I want to give it a no-op, I have to declare: foo(new Consumer<Object>() { public void accept(Object o) { // do nothing } } where I would like to be able to do something like: foo(Object::null) instead. Does something like