Java View all facts Glossary Help |
member > method > recursive method |
recursive method comparison table |
Subject | work by | is a kind of | is a synonym of | have example | has definition | use | is partitioned into |
---|---|---|---|---|---|---|---|
method | specification | member function | Code that specifies some of the behaviour of a class or instance | the super method to invoke a method declared in the superclass | static method, instance method | ||
recursive method | calling itself to solve a subproblem until the subproblem is simple enough to solve directly | method | //Recursive method to compute the nth power of 2 | A method that calls itself | recursion |
Next method: substring Up: method Previous method: public method