搜索资源列表
complex
- complex类加法,减法,乘法,除法运算,重载输出函数,运用友元函数,掌握类的声明和对象的定义; 观察构造函数和析构函数的执行过程; 学习使用Visual C++6.0的Debug调试功能,跟踪观察类的构造函数、析构函数、成员函数的执行顺序。-Complex kind of addition, subtraction, multiplication, and division, operation, an overloaded output function use friend
student
- VS2010,对C++中的基本概念(基本知识点)的理解和掌握,其中包括类、成员、函数、友元、重载、IO流、模板等;此外,还包含了对数据结构(链表)、内存操作的内容,以及编程的规范。-VS2010, on the basic concepts C++ (basic knowledge) to understand and master, including class, member, function, friends, overloading, IO streams, templates, e
operator
- vc++中运算符重载函数++运算符重载函数的实现;-c++ operator overloading function++ operator overloading function to achieve
complex
- 一、实验名称:Complex类的运算符重载 二、实验目的:这个实验题目的主要目的是让同学们掌握c++运算符重载的用法 三、实验内容: 编写一个Complex类,需要完成的运算符重载有: (1) + :重载+,用来完成两个复数的加法; (2) -:重载-,用来完成两个复数的减法; (3) *:重载*,用来完成两个复数的乘法; (4) <<:重载<<,用来输出一个复数,输出的格式为(a + b * i),其中a为实部,b为虚部。-First, th