Java View all facts Glossary Help |
| member > class member > class method > main method |
| main method comparison table | |||||||||
| Subject | call | is a synonym of | be part of | have method signature | is a kind of | be similar to | have | has definition | be |
|---|---|---|---|---|---|---|---|---|---|
| class method | static method | 1 class | method | 'this' value when it is executing | A method that is invoked without reference to a particular object | public except for those that will definitely need to be called from outside the package | |||
| main method | other methods to run an application | a class | public static void main(String[] args) | class method | a main function in C | one argument of type String[] | A method that is initially executed in an application |
Next class method: parseInt Up: class method Previous class method: isDigit