资源简介
C++面向对象高级编程代码资源,大牛侯捷主讲的C++课程参考代码,非常有参考价值
代码片段和文件信息
#include
#include “complex.h“
using namespace std;
ostream&
operator << (ostream& os const complex& x)
{
return os << ‘(‘ << real (x) << ‘‘ << imag (x) << ‘)‘;
}
int main()
{
complex c1(2 1);
complex c2(4 0);
cout << c1 << endl;
cout << c2 << endl;
cout << c1+c2 << endl;
cout << c1-c2 << endl;
cout << c1*c2 << endl;
cout << c1 / 2 << endl;
cout << conj(c1) << endl;
cout << norm(c1) << endl;
cout << polar(104) << endl;
cout << (c1 += c2) << endl;
cout << (c1 == c2) << endl;
cout << (c1 != c2) << endl;
cout << +c2 << endl;
cout << -c2 << endl;
cout << (c2 - 2) << endl;
cout << (5 + c2) << endl;
return 0;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 4047 2015-07-31 07:57 complex.h
文件 730 2015-07-31 07:57 complex_test.cpp
文件 1200 2015-07-31 07:57 string.h
文件 278 2015-07-31 07:57 string_test.cpp
- 上一篇:c语言最基础影院程序
- 下一篇:先序创建二叉树并实现其基本运算
评论
共有 条评论