Difference between revisions of "Glossary"

From CompSciWiki
Jump to: navigation, search
(- C -)
(- N -)
Line 11: Line 11:
  
 
====- N -====
 
====- N -====
'''Nested Method Call''' - A method call in which another method call is used as an argument.
+
*'''Nested Method Call''' - A method call in which another method call is used as an argument.
 +
 
 
====- P -====
 
====- P -====
 
'''Parameter''' - An input value which that a method expects.
 
'''Parameter''' - An input value which that a method expects.

Revision as of 15:41, 20 March 2007

Glossary

- A -

  • Argument - A value passed to a method's parameter during a method call.
  • Array - An object that can contain many values. Its contents can be accessed via. numerical indicies.

- C -

  • Control Statement - A statement that returns a boolean value usually used to denote conditions for an if statement or the end case of a loop.

- M -

  • Main Method - The method which Java runs when it is told to execute a class.

- N -

  • Nested Method Call - A method call in which another method call is used as an argument.

- P -

Parameter - An input value which that a method expects.

- R -

Return Value - A value that a method which is finished running passes to its caller.

- U -

User - The person who is giving input to and interpreting output from your program. 'User-Defined Method - A section of code which is declared once in a program, then used by other code sections.