Typical term among C++ programmers for a message send. There is a subtle yet important difference which illustrates why C++ is a bad way to learn OOP. Method call implies that the method to be run is known at compile-time, while message send correctly implies that the exact method which will be run is known only at runtime. Use of 'method call' implies a sequential programming mindset.

Log in or register to write something here or to contact authors.