Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and beauty - What are plastic variables and implementation variables?
What are plastic variables and implementation variables?
Variables are data items named by identifiers, and each variable must declare its data type. The data type of a variable determines the value type it can represent and the operations it can perform.

I think the essence of variables is memory space.

For example, in java, variables can be divided into basic data types and reference data types.

Basic data type memory space stores values.

Reference data type memory space storage address.

I hope it helps you.