Java View all facts Glossary Help |
member > method > protected method |
protected method comparison table |
Subject | be | override by | is a kind of | is a synonym of | access by | has definition | is partitioned into |
---|---|---|---|---|---|---|---|
method | public except for those that will definitely need to be called from outside the package | specification | member function | other methods and variables in any class in the same package by default | Code that specifies some of the behaviour of a class or instance | static method, instance method | |
protected method | protected or public in all subclasses | private method in subclass | method | code in the same package as this class as well as code in any subclasses, even if they are not in the same package |
Next method: public method Up: method Previous method: private method