What is the difference between method and message?
Answer Posted / rajputvishal
A message is an instruction to perform some operation send by an object to another object which will perform the operation.
A method is the implementation which is executed after receiving the message
| Is This Answer Correct ? | 14 Yes | 3 No |
Post New Answer View All Answers
What does catch(…) mean?
What return value must conversion operators have in their declaration?
How can we check whether the contents of two structure variables are same or not?
What is polymorphism in c++? Explain with an example?
Write about all the implicit member functions of a class?
what are function pointers?
List the features of oops in c++?
What is the difference between mutex and binary semaphore?
What is the most common mistake on c++ and oo projects?
What are virtual constructors/destructors?
Can you pass an array to a function in c++?
What is auto type c++?
what is the use of void main() in C++ language?
Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. Your program should work for squares of all side sizes between 1 and 20. --- │ │ │ │ │ │ ---
Is c++ the most powerful language?