![]() |
subject > message > method call > Java method call > instance method call |
![]() ![]() | ||
instance method call comparison table |
Subject | is a kind of | have example |
---|---|---|
Java method call | method call | resultVariable = methodname(argument1, argument2); |
instance method call | Java method call | resultVariable = b.methodName(arguments);where b is the object containing instance method methodName |
Next Java method call: Java method call with no arguments Up: Java method call