学习编程不一定需要英语水平很高,能记住认识一些常用的英文单词也可以,有看不明白的文档资料也可以使用翻译工具,编写代码时大部分好用的IDE都是有代码提示的。本文主要介绍C++语言编程中常用的英语单词。

1、L首字母

英文

中文

late binding

滞后关联

leading 0 (ocal)

八进制值的开头

leading 0x or 0X(hexadecimal)

十六进制值的开头

left-justified

左对齐

left-to-right associability

从左向右结合定律

length of a string

字符串长度

lexicographic ordering

字典序

library

linear search

线性查找

linear search of an array

数组的线性查找

linkage

连接

linkage specification

连接指定

linked list

链表

linker

链接器

linking

连接

literal

直接量

loading

装入

local variable

作用域仅限于某个块内的变量

logic error

逻辑错误

logical AND(&&)

逻辑与

logical negation(!)

逻辑非

logical operator

逻辑运算符

logical OR(||)

逻辑或

long

loop

循环

loop and a half

中置循环

loop counter

循环计数器

loop invariant

循环语句执行一次后,保存程序状态的语句

loop invariant

循环不变式

loop-continuation condition

循环条件

looping

循环

lvalue("left value")

左值

2、M首字母

英文

中文

machine code

机器码

machine dependent

机器相关

machine independent

机器无关

macro

magic number

幻数

main

程序执行时第一个被调用的函数

make

一个包含用于指定如何通过编译和链接

math library functions

数学库函数

m-by-n array

m×n数组

member access control

成员访问控制

member access specifies

成员访问说明符

member class

成员类

member function

成员函数

member function overloaded operator

重载为成员函数的运算符

member initialize

成员初始化值

member object

成员对象

member selection operator(.和→)

成员选择运算符

member wise copy

成员复制

memory leak

内存泄漏

memory location

内存地址

merge sort

归并排序

message

消息

method

方法

mixed-type expression

混合类型表达式

modeling

构造

modular program

模块化程序

module

模块

modulus operator(%)

求模运算符

multiple inheritance

多重继承

multiple-selection structure

多项选择结构

multiple-subscripted array

多下标数组

multiplication operator(*)

乘法运算符

multiprocessor

多道程序处理

multitasking

多任务

mutator function

变异函数

3、N首字母

英文

中文

name clash

命名冲突

name decoration

名字修饰

name mangling

名字改编

name of an array

数组名

named constant

命名常量

namespace

是用来避免命名空间冲突

negative test case

逆向测试用例

nested block

嵌入块

nested control structures

嵌套控制结构

nested parentheses

嵌套的括号

new

用来从堆中动态分配内存的运算符

newline

换行符

no static local object

非静态局部对象

non-constant pointer to constant data

常量数据的非常量指针

non-constant pointer to non-constant data

非常量数据的非常量指针

non-fatal error

非致命错误

nonmember function

非成员函数

non-over loadable operators

非可重载的运算符

non-type parameter in a template header

模板首部中的无类型参数

null character

空字符('\O)

NULL pointer

NULL指针

numeric code of a character

字符的数字代码

推荐文档