Link to home
Start Free TrialLog in
Avatar of shanti_priya
shanti_priya

asked on

How C++ objects Communicate to each other

Hi experts!

In many of the books i have read describe that " C++ objects communicate each other",and this concept is the one which confuses me most.

Can anybody explain me How this communication between objects is done with "theoriotical" and "code example"
or else give me link which expalins me about this concept


Thanks in advance
-Shanti
 


 
Avatar of rajeev_devin
rajeev_devin

Theoratically Objects communicate with each other by passing message.
Pratically they communicate with each other by calling member functions.
ASKER CERTIFIED SOLUTION
Avatar of rajeev_devin
rajeev_devin

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
C++ objects do NOT communicate with each other.  Let's settle that.  There is no built-in feature in C++ to do this.

>> C++ objects do NOT communicate with each other.  Let's settle that.  There is no built-in feature in C++ to do
>> this.
Is that true ?
Then how one object uses another object ?
Also I want to know in which language object communicate with each other ?