InterviewSolution
Saved Bookmarks
| 1. |
What are methods? How are these related to Objects? |
|
Answer» A method in object-oriented programming is a PROCEDURE ASSOCIATED with a CLASS. A methoddefines the behavior of the OBJECTSTHAT are created from the class. Another way to say this is that amethod is an action that an object is ABLE to perform. The association between method and class is called binding. |
|