Content deleted Content added
m r2.6.5) (robot Adding: zh:初始化 |
grammar fix |
||
Line 1:
In [[computer programming]], '''initialization''' is the assignment of an initial value for a [[data object]] or variable. The
Initialization is done either by statically embedding the value at compile time, or else by assignment at [[Run time (program lifecycle phase)|run time]]. A section of code that performs such initialization is generally known as "initialization code" and may include other, one-time-only, functions such as opening files. Setting a memory ___location to [[hexadecimal]] zeroes is also sometimes known as "clearing" and is often performed by an [[exclusive or]] instruction (both operands specifying the same variable), at [[machine code]] level, since it requires no additional memory access.
|