命令性宏指令英文解释翻译、命令性宏指令的近义词、反义词、例句
英语翻译:
【计】 imperative macroinstruction
分词翻译:
令的英语翻译:
order; command; cause; drinking game; ream; season; your【化】 ream
性的英语翻译:
character; gender; nature; quality; sex【医】 gam-; gamo-; geno-; sex
宏指令的英语翻译:
macroinstruction【计】 macroinstruction
网络扩展解释
命令性宏指令
命令性宏指令的中文拼音为“mìng lìng xìng hóng zhǐ lìng”,英语解释翻译为“imperative macro instruction”,英文读音为 /ɪmˈpɛrətɪv ˈmækrəʊ ɪnˈstrʌkʃən/。
命令性宏指令是一种由程序员编写的宏指令,通常作为一个可以在程序中嵌入的代码来执行一组特定的操作或功能。它是由一串程序代码组成,可以在程序的任意位置使用,被解释器处理并转换成一系列的机器指令,用于执行特定的任务。
英文例句(包含中文解释)
Here is an example of using an imperative macro instruction in a C program to swap two numbers:
以下是在 C 程序中使用命令性宏指令交换两个数字的示例:
#define SWAP(x, y) do { int t = x; x = y; y = t; } while (0)
int a = 1, b = 2;
SWAP(a, b); /* 交换 a 和 b 的值 */
英文近义词(包含中文解释)
- Algorithmic language control structure:算法控制结构
- Machine control instruction:机器控制指令
- Machine instruction:机器指令
英文反义词(包含中文解释)
- Declarative macro instruction:声明性宏指令
英文单词常用度
命令性宏指令在计算机科学领域属于专业用语,常用于编程语言和操作系统的实现中。在非专业场合中较少使用。