英语人>词典>汉英 : 中断语句 的英文翻译,例句
中断语句 的英文翻译、例句

中断语句

词组短语
break statement
更多网络例句与中断语句相关的网络例句 [注:此内容来源于网络,仅供参考]

It's not a jump but rather a way to break out of an iteration statement.

它并不属于一次跳转,而是中断循环语句的一种方法。

Briefly, a break statement interrupts the current control flow.

简单地说, break 语句中断当前的控制流。

G. speech perception and understanding. These stages are described and interpreted in terms of the findings from recorded corpus and questionnaires in education. As for speech production, students' speech motives are explored in detail. Speaker's speech intention is interpreted in connection with listener's reception of it. Findings are presented to show that, in the course of formulating speech plan, the previous sentences is often processed, the construction of sentence is a process of accumulative expansion of speech items through sequential or inversive appending or insertion, and the interaction between long-term and short-term speech plans often occurs.

本文运用录音语料、问卷调查材料具体分析了师生在言语生成、言语理解各阶段的特点和规律:在言语生成方面,本文探讨了学生的言语动机及其分类;结合言语意图的领会考察了言语意图;发现在制订言语计划过程中,常常出现对所听话语的处理加工,语句的建构是一个语项累加扩展过程,这种累加可以是顺序的,也可以是插序或倒序的,言语计划的制订还表现为预定计划与即时计划的相互作用;考察了言语计划执行过程中的一些现象,如制订计划与执行计划的交替、执行计划的中断等,并分析了产生这些现象的原因。

There is also a few CPU specific operations you cannot write in C, those being Interrupt Service Routines that return with IRET (on i386 machines) opcodes and other functions such as commands to load the GDT (i386) can be inlined but still require using assembly.

也存在少数的CPU特殊指令不能用C写的,那些用IRET(i386机器上的)返回的中断服务例程,和那些诸如装载GDT(i386)命令的函数,可以使用内联函数,但是必须使用汇编语句。

更多网络解释与中断语句相关的网络解释 [注:此内容来源于网络,仅供参考]

abohm:绝对欧姆,CGS电磁单位制欧姆

91. abort 中断,故障; 异常情况 | 92. abohm 绝对欧姆,CGS电磁单位制欧姆 | 93. abnormal statement 异常语句

BREAK:中断

== 使用中断 (break) 语句 =="中断"(break)语句是用来终止循环语句的,例如在当回圈停止的条件还没有符合或整个序列还没有执行完时用来停止循环语句(回圈)的执行.

else:否则

"取"(for)回圈中"否则"(else)从句是可选的,但如果用了"中断"(break)语句来停止回圈的话,"否则"(else)从句将不会被执行. Python 与周蟒程式语言的"取"(for)回圈和传统程式语言的 for 回圈不尽相同.

LEN:长度

有趣的是 "长度"(len)函数可以用在任何物件序列上. 在这个例子中是用一序列的字元(即字串)上. 请记得"中断"语句也可以在"取"(for) 回圈中使用. == 使用继续 (continue) 语句 ==继续 (continue)语句是用来告诉周蟒语言解释器跳过目前回圈区块中剩下来的其他语句,