Can anyone please explain "Reference to an instance method of an arbitrary object of a particular type" in Method Reference Java 8? ? 1 2 3 4 5 6 7 8 interface A{ void methodA(); } class Employee{ int id; String name; //getters and setters } Why in general method isn't allow...