What is the difference between method and message?
Answer Posted / earvinyuvi
Message:
Objects communicate by sending messages to each other. A
message is sent to invoke a method.
Method:
Provides response to a message. It is an implementation of
an operation.
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
How can you quickly find the number of elements stored in a a) static array b) dynamic array ? Why is it difficult to store linked list in an array?how can you find the nodes with repetetive data in a linked list?
Is it possible for a member function to use delete this?
Can member data be public?
What are pointer-to-members? Explain.
What is stoi in c++?
What data structure is fastest, on average, for retrieving data: a) Binary Tree b) Hash Table c) Stack
Explain the uses of static class data?
Differentiate between a pointer and a reference with respect to c++.
When we use Abstract Class and when we use Interface?where we will implement in real time?
What is the difference between while and do while loop?
Evaluate the following expression as C++ would do :8 * 9 + 2 * 5 a) 82 b) 79 c) 370 d) list
How long will it take to learn programming?
How a new operator differs from the operator new?
Is std :: string immutable?
What is iterator c++?