Java View all facts Glossary Help |
syntactic unit > access unit > variable > parameter |
parameter comparison table |
Subject | store in | have part | be | is a subtopic of | have example | specify in | hide | have purpose | pass to | surround by | have example of use | |
---|---|---|---|---|---|---|---|---|---|---|---|---|
applet parameter | name and value | as private as possible | Applets | the applet tag using a PARAM argument | to transmit a primitive datum or object reference to a method or constructor | the applet when the applet is loaded | ||||||
command-line argument | an array of strings and passed to the main method | a parameter of a main method | Methods | to transmit a primitive datum or object reference to a method or constructor | quotations marks if the argument is more than one word long | java EchoArgs Tim John "Pamela Sue" Fred 25 | ||||||
exception-handler parameter | as private as possible | Exception Handling | to transmit a primitive datum or object reference to a method or constructor | |||||||||
method parameter |
| as private as possible | Methods | //Example of 2 method parameters, one integer and one array, shown in bold | instance variable of the class | to pass values into methods |
Next variable: pointer Up: variable Previous variable: operand