0
What was the difference between field and variable?
1 ответ
+ 1
field :
-field can be using access modifiers like public, private,protected.
- no need to create instance of class to access static field.
- it destroy when scope of class destroy.
variable:
-variable is a storage location. it is determine which type of value you store in variable.
- its declared inside function.
- it's destroyed when scope of function destroy.