What is the difference between method and message?
Answer Posted / dd
Method is a function or procedure that is defined for a
class and typically can access the internal state of an
object of that class to perform some operation. While
message is refer to instruction that is send to object which
will invoke the related method.
| Is This Answer Correct ? | 61 Yes | 6 No |
Post New Answer View All Answers
In int main(int argc, char *argv[]) what is argv[0] a) The first argument passed into the program b) The program name c) You can't define main like that
What does count ++ do in c++?
Describe linkages and types of linkages?
List the issue that the auto_ptr object handles?
How many different levels of pointers are there?
What does asterisk mean in c++?
How the keyword struct is different from the keyword class in c++?
Who made c++?
What are the differences between malloc() and calloc()?
Why was c++ created?
Do you know about latest advancements in C++ ?
What is null and void pointer?
What is c++ runtime?
Write a program which uses Command Line Arguments
Who calls main function?