换行子程序英文解释翻译、换行子程序的近义词、反义词、例句
英语翻译:
【计】 new line subprogram
分词翻译:
换行的英语翻译:
【计】 LF; line advance; new line; NL; wrap
子程序的英语翻译:
subprogram; subroutine
【计】 functional element program; subprograme; subroutine
【经】 sub-program; sub-routine
网络扩展解释
换行子程序
“换行子程序”是一种计算机编程语言的术语,用来表示在代码中插入一个换行符以在屏幕上显示一个新的行。
中文拼音
huàn xíng zǐ chéng xù
英语解释翻译
The term "carriage return" is used in reference to a code that represents a new line in computer programming languages.
英文读音
/ˈkærɪdʒ rɪˌtɜrn/
英文的用法
The carriage return is used to create a new line of text in computer programming languages. It typically works in conjunction with the line feed command to move the cursor to the beginning of a new line.
英文例句
Here's an example of how to use carriage return and line feed in your code:
print("Hello, World!\r\n")
The \r inserts a carriage return, while the \n (linefeed) moves the cursor to the next line.
下面是如何在代码中使用换行子程序的示例:
print("Hello, World!\r\n")
其中 \r 插入了一个回车符,而 \n (换行符)则把光标移动到下一行。
英文近义词
line feed
Line Feed 字符是另一种在计算机编程语言中用于控制换行的命令。
英文反义词
backspace
反义词“backspace”是指删除上一个字符而不是创建新行的操作。
英文单词常用度
"carriage return" 的常用度为中等。