if you have a class named College which has a method "void getFees(double)", and another class named Student which have a method "double payFees()" and you wrote this code in the main for example:
College c();
Student s();
c.getFees(s.payFees());
is this a correct example of passing messages between objects ?