ChampionAsh5357
Joined 18 September 2020
Revision as of 00:33, 4 January 2021 by ChampionAsh5357 (talk | contribs) (Just a simple summary tip.)
Hello, I'm just a person who provides helpful tidbits of information sometimes.
Useful Tip of Sometime:
According to $4.12.3 of the Java Language Specification, there are eight types of variables.
- Class Variable
- A static field, or a field within an interface.
- Instance Variable
- A non-static field within a class.
- Array Component
- The values associated within a created array.
- Method Parameter
- A parameter located within a method declaration.
- Constructor Parameter
- A parameter located within a constructor declaration.
- Lambda Parameter
- A parameter declared as part of a lambda expression.
- Exception Parameter
- A parameter created within a catch clause.
- Local Variables
- A variable declared within a block.