Object Oriented Software Engineering   View all facts   Glossary   Help
subject > message > method call > Java method call
Upmethod call

Java method call comparison table
Subject have example
instance method call
 resultVariable = b.methodName(arguments);
where b is the object containing instance method methodName
Java method call with no arguments
resultVariable = noArgumentMethod();

Upmethod call