C++ 编程中常用的英文单词(首字母是A、B、C开头)
【前言】学习编程不一定需要英语水平很高,能记住认识一些常用的英文单词也可以,有看不明白的文档资料也可以使用翻译工具,编写代码时大部分好用的IDE都是有代码提示的。本文主要介绍C++语言编程中常用的英语单词。
1、A首字母
英文 |
中文 |
abort() |
特殊函数,如果一个函数抛出异常, 但在通往异常函数的调用链中找不到 与之匹配的catch, 则该程序通常以此函数调用终止 |
abstract base class |
抽象基类 |
abstract class |
抽象类 |
abstract data type(ADT) |
抽象数据类型 |
abstraction |
抽象 |
accessor function |
访问函数。 可以访问一个对象但不能改变其值的函数。 |
action |
操作 |
action/decision model |
操作判断模型 |
adding a pointer and an integer |
指针与整数相加 |
address |
地址一个指定变量在内存中的位置值。 |
aggregation relationship |
聚合关系 |
algorithm |
算法 |
ambiguity in multiple inheritance |
多重继承的歧义性 |
ampersand(&) suffix |
&号后缀 |
angle brackets |
尖括号 |
ANSI/ISO C++draft standard |
ANSI/ISO C++标准, 美国国家标准化协会 (AmericanNational Atandards Institute) 和国际标准化组织 (International Standards Organization) 发布的C++语言标准 |
appending strings to other strings |
将字符串添加到另一个字符串中 |
argument |
参数 |
argument in a function call |
函数调用中的参数 |
arithmetic and logic unit |
算术逻辑单元 |
arithmetic assignment operator |
算术赋制值运算 |
arithmetic operators |
算术逻辑符 |
array |
数组 |
array initialize list |
数组初始化值列表 |
array of pointers |
指针数组 |
array of strings |
字符串数组 |
arrow member selection operator(->) |
箭头成员选择运算符 |
arrow operator |
–>运算符 p–>等同于(*p)﹒m。 |
ASCII character set |
ASCII字符集 |
ASCII code |
ASCII 码, 美国信息交换标准码 (American Standard Code for Information Interchange),将字母,数字, 标点符号和控制符同0~127之间的整数对应起来。 |
assembly language |
汇编语言 |
assert macro |
assert宏 |
assertion |
断言 |
assignment |
赋值 |
association |
关联 |
attribute |
属性 |
attributes of an object |
对象属性 |
auto storage class specifier |
auto存储类说明符 |
automatic storage |
自动存储 |
automatic storage class |
自动存储类 |
automatic variable |
自动变量 |
2、B首字母
英文 |
中文 |
base case in recursion |
递归中的基本情况 |
base class |
基类 |
base class default constructor |
基类默认构造函数 |
base-class constructor |
基类构造函数 |
base-class destructor |
基类析构函数 |
base-class initialize |
基类初始化值 |
base-class pointer |
基类指针 |
base-class virtual function |
基类虚函数 |
behavior |
行为 |
behaviors of an object |
对象行为 |
Big-Oh notation |
大O表示法 |
“Big three” management functions |
“大三样”内存管理函数 |
binary file |
二进制文件 |
binary operator |
二元运算符 |
binary scope resolution operator(::) |
二元作用域运算符 |
binary search |
折半查找 |
binary search of an array |
数组折半查找 |
binary tree |
二叉树 |
bit |
位 |
black-box testing |
黑盒测试 |
block |
块(程序块) |
block scope |
块范围 |
body of a function |
函数体 |
body of a loop |
循环体 |
boolean operator |
布尔运算符 |
boolean type |
布尔类型 |
boundary test case |
边界测试用例 |
bounds error |
边界错误 |
bounds checking |
边界检查 |
break statement |
break语句 |
Breakpoint |
断点 |
bubble sort |
冒泡排序 |
buffered input |
带缓冲的输入 |
byte |
字节 |
3、C首字母
英文 |
中文 |
C++ standard library |
C++标准库 |
call a function |
调用函数 |
call-by-reference |
按引用调用 |
call-by-value |
按值调用 |
called function |
被调用函数 |
caller |
调用者 |
calling function |
调用函数 |
call stack |
调用栈 |
cascaded overloaded operators |
连续使用重载的运算符 |
case lable |
case标号 |
case sensitive |
大小写相关 |
cast |
强制类型转换 |
cast operator |
强制类型转换运算符 |
cast operator function |
强制类型转换运算符函数 |
catch a group of exceptions |
捕获一组异常 |
catch an exception |
捕获一个异常 |
catch argument |
catch参数 |
catch block |
catch块 |
central processing unit(CPU) |
中央处理单元 |
character code |
字符编码 |
character constant |
字符常量 |
character pointer |
字符指针 |
character set |
字符集 |
cin.get() function |
cin.get()函数 |
cin object |
cin对象 |
clarity |
清晰性 |
class |
类 |
class Array |
Array 类 |
class Date |
Date 类 |
class definition |
类定义 |
class hierarchy |
类层次 |
class Huge Integer |
Huge Integer类 |
class libraries |
类库 |
class member selector operator(.) |
类成员选择运算符 |
class Phone Number |
Phone Number类 |
class scope |
类范围 |
class String |
String类 |
class template |
类模板 |
class template name |
类模板名 |
client of a class |
类客户 |
clint/server computing |
客户/服务器计算 |
coercion of arguments |
强制参数类型转换 |
collaboration |
协作 |
column subscript |
列下标 |
command line |
命令行 |
comment(//) |
注释语句 |
comparing strings |
比较字符串 |
compiler |
编译程序 |
compile error |
编译错误 |
compile-time error |
编译时错误 |
component |
组件 |
composition |
复合 |
compound statement |
复合语句 |
computer program |
计算机语言 |
concatenation |
连接 |
concrete class |
具体类 |
condition |
条件 |
conditional operator(?:) |
条件运算符 |
const |
一个关键字 |
const type qualifier |
const类型限定符 |
constant variable |
常量变量 |
constant pointer |
常量指针 |
constant |
常量 |
constructor |
构造函数 |
continue |
一种语句 |
control structure |
控制结构 |
conversion between class types |
类类型之间的转换 |
conversion constructor |
转换构造函数 |
conversion function |
转换函数 |
conversion operator |
转换运算符 |
copy constructor |
复制构造函数 |
copy of a value |
数值副本 |
copying strings |
复制字符串 |
counter-controlled repetition |
计数器控制重复 |
coupling |
耦合 |
cout object |
cout对象 |
crafting valuable classes |
构造重要类 |
customize software |
定制的软件 |
【结束语】C++编程里面所需用到的英文单词说多不多,说少不少,想通过学习C++编程来提高英语水平可能不如英语课那么系统,不如英语课效果那么好哦。但绝对可以肯定的一点是:学习C++编程是可以提升孩子学习英文的兴趣的,对记忆和背诵英文单词也有很大帮助哦!C++编程是一门综合性很强的学科课程,对孩子的语数英能力都有一定的要求,尤其是数学,在编程课中需要用到大量数学知识,比如对数,函数等等,把C++编程学好,你的语数英也差不到哪去啦!除了对你的学能有帮助外,C++编程是信息学奥赛的指定语言,孩子参加信息学奥赛,未来的发展也会有更多可能,孩子的世界将会更加开阔!