Variables, Parameters, Arguments: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
m (Ovidiu moved page Parameters, Variables, Arguments to Variables, Parameters, Arguments without leaving a redirect)
Line 4: Line 4:
* [[Java_Generics_Concepts#Type_Parameters|Java Generics Concepts | Type Parameters]]
* [[Java_Generics_Concepts#Type_Parameters|Java Generics Concepts | Type Parameters]]
=Variable=
=Variable=
Variables in various programming languages:
* [[Java_Language#Variables|Java variables]]
* Python variables
* Go variables
* Bash variables


=Parameter=
=Parameter=

Revision as of 18:42, 17 August 2023

Internal

Variable

Variables in various programming languages:

Parameter

Argument

Discussion

This terminology applies to Java method invocations, Python method invocations and even Java generics, where the ordinary parameters and variables are replaced with type parameters (type variables), and the arguments are replaced with type arguments.