摘要:
七. 类型转换 ● 隐式类型转换 隐式类型转换 implicit type conversions #include<iostream> using namespace std; void main() { double result; char a='k'; //k的ASCII码为107 int 阅读全文
摘要:
六. 表达式 ● 表达式 表达式 expression An expression consists of a combination of operators and operands. (An operand is what an operator operates on.) The simpl 阅读全文
摘要:
五. 常变量(只读变量)和宏 ● 常变量 常变量 #include <iostream.h> //预处理文件 int main() { const double pi=3.14; //定义圆周率常量pi, pi是一个"常变量(const variable)" double radius; //定义半 阅读全文
摘要:
四. 运算符 运算符优先级和结合性 Operator precedence and associativity (or fixity) 注意: ① 成员运算符MemberOperators可以称为点运算符, 箭头运算符dot operator, arrow operator. ② 操作符/运算符根据 阅读全文
摘要:
三. 作用域和可见性 ● 标识符的作用域 标识符的作用域是标识符在程序源代码中的有效范围,从小到大分为函数原型作用域、块作用域(局部作用域),文件作用域(全局作用域)。 1. 函数原型作用域 函数原型作用域是C++程序中最小作用域。函数原型中的参数,其作用域始于"(",结束于")"。 例如,设有下列 阅读全文
摘要:
二. 数据类型 ● 数据类型和sizeof关键字(也是一个操作符) ※ 在现代半导体存储器中, 例如在随机存取存储器或闪存中, 位(bit)的两个值可以由存储电容器的两个层级的电荷表示(In modern semiconductor memory, such as dynamic random ac 阅读全文
摘要:
一. 基础知识 ● 程序和C/C++ 程序: 根据Wirth (1976), Algorithms + Data Structures = Programs. Whence C: 1972, Dennis Ritchie[ˈritʃi](丹尼斯·里奇), 贝尔实验室(Bell Labs), C语言是 阅读全文
摘要:
※ 这里以"软考"参考书<<软件设计师教程.第4版(褚华 主编)>>的目录为纲, 总结了一些计算机领域常用的术语及其英语表达. 第1章计算机系统知识Knowledge of the computer system 1.1 计算机系统基础知识 Basic knowledge of the comput 阅读全文