value type (n)~ A data type that is represented by the type’s actual value. If a value type is assigned to a variable that variable is given a fresh copy of the value. (This is in contrastto a reference type where assignment does not create a copy.) Value types are usually created on a method’s stack frame rather than in the garbage-collected heap. A value type can be boxed which is a process that creates a corresponding reference type.
작성자 정보
- 지티 작성
- 작성일
컨텐츠 정보
- 54 조회
- 목록
본문
value type (n)~ A data type that is represented by the type’s actual value. If a value type is assigned to a variable that variable is given a fresh copy of the value. (This is in contrastto a reference type where assignment does not create a copy.) Value types are usually created on a method’s stack frame rather than in the garbage-collected heap. A value type can be boxed which is a process that creates a corresponding reference type.