User:ChampionAsh5357

From Forge Community Wiki
Revision as of 00:33, 4 January 2021 by ChampionAsh5357 (talk | contribs) (Just a simple summary tip.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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.