Method Invocation in Java
How many types of method invocation?
We can
call :
interface
methods
static
methods
instance
methods
constructor
methods
parent
methods
CName.sMethod(p1,p2)
obj.method(p1,p2)
IName.method(p1,p2)
CName obj = new CName(p1,p2)
super(p1,p2)
Previous slide
Next slide
Back to first slide
View graphic version