initialization怎么读,initialization的音标和真人发音
英音  [ɪˌnɪʃəlaɪ'zeɪʃn]    
美音 [ɪˌnɪʃəlaɪ'zeɪʃn]    

initialization是什么意思,initialization的意思是

n.设定初值,初始化

initialization 的用法和双语例句“点击”或“选中”例句中的单词,就可以看到词义解释

Back in copy_process , some housekeeping is performed in addition to several other limit and security checks , including a variety of initialization on your new task_struct .
回到copy_process函数,除其它一些限制和安全检查之外,就要执行一些内务处理,包括对您的新的task_struct结构的各种初始化。
Lazy lists allow you to defer initialization of expensive resources until you absolutely need them . They also allow the creation of infinite sequences : lists that have no upper bound .
懒列表允许你把代价昂贵的资源初始化过程推迟至绝对需要它们的时候才进行,它们还允许创建无穷序列:没有上限的列表。
Although lvalue references and rvalue references behave similarly during initialization ( only lines 18 and 28 above differ ) , they increasingly diverge during overload resolution .
虽然lvalue引用和rvalue引用在初始化时有着相似的行为(只有第18和28行不同),但在重载决议的时候它们的区别就很显著了。
This operation includes initialization of kernel data structures , the creation of some user processes , and the transfer of control to one of them .
这项工作包括初始化内核数据结构,创建用户进程,并将控制权转移到其中之一。
It has control over process initialization , inheritance , and program execution - this gives you the ability to write very flexible policies to suit your needs .
它能控制进程初始化、继承和程序执行的整个过程,这可以让你根据需求制定非常灵活的策略。
If the application indicates at initialization that it uses skeleton tracking , the skeletal tracking engine signals a skeleton frame each time it processes the depth data , whether or not a skeleton currently appears in the frame .
如果应用在初始化时就确定使用骨骼追踪,无论骨骼是否出现在帧内,骨骼追踪引擎每次处理深度数据都会触发一个骨骼帧。
If your page template includes any variety of modules that may or may not be on the page , or for visual reasons you need them to initialize sooner , you could place the initialization function immediately after the module .
如果你的页面模板包含一些多变的模块可能不会出现在页面中或者为了视觉呈现的原因你需要它们能够快速加载你可以将初始化函数紧跟在模块之后.
To specify that a named value is mutable ( can be changed after initialization ) , it must be annotated with variable , as is shown in listing 2 at line 5 .
要指明一个命名变量是可变的(在初始化之后可改变),其必须要使用variable注解,如清单2中第5行所展示的那样。
The code in listing 3 performs initialization , performs some work , completes the transaction if everything was successful , rolls back otherwise , and finally cleans up resources .
清单3中的代码完成初始化,执行某些工作,如果一切都顺利的话就完成事务,否则回滚,最后清空资源。
Instead of a constructor , the body of the class contains the class initializer . This code defines the private variable ( nothing is visible unless annotated as shared ) , and then the initialization logic .
类主体包含的是类初始化器而非构造函数,这一代码定义私有变量(除非注解成shared,否则不可见),然后定义初始化逻辑。