命令式操作英文解释翻译、命令式操作的近义词、反义词、例句
英语翻译:
【计】 imperative operation
分词翻译:
命令的英语翻译:
order; command; appoint; dictate; imperative; instruct
【计】 command; GO TO command GOTO
式的英语翻译:
ceremony; formula; model; pattern; ritual; style; type
【化】 expression
【医】 F.; feature; formula; Ty.; type
操作的英语翻译:
handle; manipulate; operate
【计】 FUNC; O; OP
【化】 manipulation
【医】 procedure; technic; technique
【经】 operation
网络扩展解释
命令式操作
命令式操作(Mìng lì shì cāo zuò)指的是一种基于命令式编程语言的计算机操作方式。
英语解释翻译
The English translation of 命令式操作 is "imperative programming."
英文读音
The pronunciation of "imperative programming" is "im-per-a-tive pro-gram-ming."
英文用法(中文解释)
In computer science, imperative programming is a programming paradigm that uses statements that change a program's state.
英文例句(包含中文解释)
Here is an example of imperative programming in C++:
以下是C++命令式操作的例子:
int main() {
int num = 5;
while (num > 0) {
cout << num << endl;
num--;
}
}
This code will output the numbers 5 through 1, as it uses a while loop to decrement the variable num and output its value until it reaches 0.
这段代码将会输出从5到1的数字,因为它使用了while循环语句来减少变量num的值并输出其值,直到达到0为止。
英文近义词(包含中文解释)
Some synonyms for imperative programming include procedural programming and structured programming.
命令式操作的一些近义词包括过程式编程和结构化编程。
英文反义词(包含中文解释)
The opposite of imperative programming is declarative programming, which uses expressions to specify what a program should accomplish without specifying how it should do so.
命令式操作的反义词是声明式编程,它使用表达式来指定程序应该完成的任务,而不是指定如何完成任务。
英文单词常用度
Imperative programming is a common programming paradigm, and the term "imperative" is widely used in programming language specifications.
命令式操作是一种常见的编程范式,术语“imperative”在编程语言规范中被广泛使用。