请问什么是“value type”
请问什么是“value type”
In object-oriented programming, a value type is a data type that can exist outside dynamic memory allocation. Unlike reference types, value types can be directly embedded into composite objects.
Primitive types are always value types.
Value types can exist in dynamically allocated memory, such as embedded into a dynamic object. Some platforms also allow direct dynamic allocation of value objects, while others require the value to be copied into a specific dynamic object. The later process is called boxing.
On some platforms, a value may be directly linked to by a pointer or reference. On others, it is a prerogative or reference types.