C++ Programming Question:
Differentiate between the message and method in C++?
Answer:
Message in C++ :
* Objects communicate by sending messages to each other.
* A message is sent to invoke a method in C++.
Method in C++ :
* Provides response to a message.
* It is an implementation of an operation in C++.
* Objects communicate by sending messages to each other.
* A message is sent to invoke a method in C++.
Method in C++ :
* Provides response to a message.
* It is an implementation of an operation in C++.
Previous Question | Next Question |
What is a dangling pointer in C++? | What is an adaptor class or Wrapper class in C++? |