常见计算机英语术语小综(一)

argument (实参)

parameter list (形参表)

block (块) 语句块,花括号括起来的语句序列

buffer (缓冲区)

built-in type (内置类型)

cerr 绑定到标准错误的ostream对象,默认输出不缓冲,通常用于不是程序逻辑部分的错误信息或其他输出

clog 绑定到标准错误的ostream对象,默认输出带缓冲,通常用于将程序执行信息写入到日志文件中

cout 用于写入到标准输出的ostream对象,一般情况下用于程序的输出

cin 用于从标准输入中读入的istream对象

class (类)

class type (类类型) 由类所定义的类型

comment (注释)

condition (条件)求值为真或假的表达式

curly brace (花括号)

main function (主函数)

manipulator (操纵符)

member function (成员函数)

method (方法)

namespcace (命名空间)

ostream (输出流)

istream (输入流)

iostream (输入输出流)

preprocessor directive (预处理指示)

return type (返回类型)

source file (源文件)

standard error (标准错误)

standard input(标准输入)

standard output (标准输出)

standard library (标准库)

operator (操作符)

data structure (数据结构)

edit-compile-debug (编辑-编译-调试)

end-of-file (文件结束符)

expression (表达式)

statement (语句)

function (函数)

function body (函数体)

function name (函数名)

header (头文件)

library type (标准库类型)

string literal (字符串字面值)

variable (变量)

uninitialized variable (未初始化变量)

access label (访问标号)

address (地址)

arithmetic type (算术类型) 表示数值即整型和浮点型的类型

class member (类成员)

compound type (复合类型)

reference (引用)
constant expression (常量表达式)

constructor (构造函数)

copy-initialization (复制初始化)

direct-initializtion (直接初始化)

data member (数据成员)

declaration (声明)

default construstor (默认构造函数)

implementation (实现)

initialized (已初始化的)

integral type (整型)

interface (接口)

link (连接)

literal constant (字面值常量)

local scope (局部作用域)

global scope (全局作用域)

ivalue (左值)

rvalue (右值)

magic number (魔数) 程序中意义重要但又不明显的字面值数字

nonconst reference (非const引用)

separate compilation (分别编译)

signed (带符号型)

statically typed (静态类型的)

type-checking (类型检查)

type specifier (类型说明符)

undefined behavior (未定义行为)

definition (定义)

enumeration (枚举)

enumerator (枚举成员)

escape sequence (转义字符)

header (头文件)

header guard (头文件保护符) 为防止头文件被同一源文件多次包含而定义的预处理器变量

identifier (标识符)

nonprintable character (非打印字符)

object (对象)

perprocessor (预处理器)

private member (私有成员)

public member (公有成员)

run time (运行时)

scope (作用域)

word (字) 机器上的自然的整型计算单元,通常一个字足以容纳一个地址,一般在32位的机器上,机器字长为4个字节

posted @ 2009-08-12 15:18  回忆1919  阅读(511)  评论(0编辑  收藏  举报