会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
金玉·礼予天地四方
博客园
首页
新随笔
联系
订阅
管理
2021年12月12日
实验5 模板类与多态
摘要: person.hpp: #ifndef PERSON_HPP #define PERSON_HPP #include<iostream> #include<iomanip> #include<string> using namespace std; class Person{ private: st
阅读全文
posted @ 2021-12-12 14:45 金玉·礼予天地四方
阅读(35)
评论(2)
推荐(0)
2021年11月25日
实验4 继承
摘要: battery.hpp: #ifndef BATTRY_HPP #define BATTRY_HPP #include<iostream> using namespace std; class Battery{ private: int capacity = 70; public: Battery(
阅读全文
posted @ 2021-11-25 15:28 金玉·礼予天地四方
阅读(79)
评论(2)
推荐(0)
2021年11月7日
实验三 类与对象2
摘要: Vector_int.hpp: #ifndef VERCTOR_INT_HPP #define VERCTOR_INT_HPP #include <cassert> #include <iostream> using namespace std; class Vector_int{ public:
阅读全文
posted @ 2021-11-07 17:20 金玉·礼予天地四方
阅读(33)
评论(3)
推荐(0)
2021年10月30日
实验2 数组、指针与c++标准库
摘要: info.hpp: #ifndef INFO_HPP #define INFO_HPP #include<iostream> #include<string> using namespace std; class Info{ public: Info(string a,string b,string
阅读全文
posted @ 2021-10-30 17:21 金玉·礼予天地四方
阅读(43)
评论(3)
推荐(0)
2021年10月23日
实验1 C++类与对象
摘要: <Complex.hpp>: #ifndef COMPLEX_HPP #define COMPLEX_HPP #include <iostream> #include <cmath> using namespace std; class Complex{ public: Complex(){} ~C
阅读全文
posted @ 2021-10-23 16:21 金玉·礼予天地四方
阅读(38)
评论(3)
推荐(0)
公告