会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
三面硬币
博客园
首页
新随笔
联系
订阅
管理
2021年12月11日
实验5 模板类与多态
摘要: 三、实验内容 2. 实验任务2 Person.hpp: #ifndef PERSON_HPP #define PERSON_HPP #include<iostream> using namespace std; class Person{ private: string name,telephone
阅读全文
posted @ 2021-12-11 22:42 三面硬币
阅读(46)
评论(1)
推荐(0)
2021年11月25日
实验4 继承
摘要: 四、实验结论 2. 实验任务2 程序源码: #include <iostream> #include <typeinfo> // definitation of Graph class Graph { public: void draw() { std::cout << "Graph::draw()
阅读全文
posted @ 2021-11-25 20:35 三面硬币
阅读(18)
评论(2)
推荐(0)
2021年11月7日
实验3 类和对象Ⅱ
摘要: 四、实验结论 2. 实验任务4 动态int型数组类Vector_int的定义实现源码(vector_int.hpp) #ifndef VECTOR_INT_HPP #define VECTOR_INT_HPP #include<iostream> using namespace std; class
阅读全文
posted @ 2021-11-07 15:03 三面硬币
阅读(26)
评论(3)
推荐(0)
2021年10月31日
实验2 数组、指针与C++标准库
摘要: 四、实验结论 2. 实验任务5 Info.hpp文件源码: #ifndef INFO_HPP #define INFO_HPP #include<iostream> #include<iomanip> using namespace std; class Info{ public: Info();
阅读全文
posted @ 2021-10-31 13:56 三面硬币
阅读(19)
评论(3)
推荐(0)
2021年10月24日
实验一 类与对象
摘要: Complex.hpp #ifndef COMPLEX_HPP #define COMPLEX_HPP #include<iostream> #include<cmath> using namespace std; class Complex{ public: Complex(): real{0},
阅读全文
posted @ 2021-10-24 21:40 三面硬币
阅读(19)
评论(2)
推荐(0)
公告