Object Oriented Software Engineering   View all facts   Glossary   Help
subject > message > method call > Java method call > instance method call
Next Java method callJava method call with no arguments    UpJava method call

instance method call comparison table
Subject is a kind of have example
Java method callmethod call
 resultVariable = methodname(argument1, argument2);
instance method callJava method call
 resultVariable = b.methodName(arguments);
where b is the object containing instance method methodName

Next Java method callJava method call with no arguments    UpJava method call