会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
suu
新随笔
联系
订阅
管理
2021年12月14日
实验五 模板类与多态
摘要: 实验任务二 Person类 #include<iostream> #include<string> using namespace std; class Person { public: Person(){}; Person(string name,string telephone,string e
阅读全文
posted @ 2021-12-14 23:50 suu`
阅读(44)
评论(2)
推荐(0)
2021年11月24日
实验四 继承
摘要: 继承
阅读全文
posted @ 2021-11-24 20:25 suu`
阅读(39)
评论(2)
推荐(0)
2021年11月10日
实验3 类与对象Ⅱ
摘要: 任务四 Vector_int类定义如下: #include<iostream> #include <cassert> using namespace std; class Vector_int{ public: Vector_int(int Size,int Value = 0); Vector_i
阅读全文
posted @ 2021-11-10 00:10 suu`
阅读(37)
评论(3)
推荐(0)
2021年10月27日
实验2 数组、指针与c++标准库
摘要: STL使用
阅读全文
posted @ 2021-10-27 21:41 suu`
阅读(63)
评论(4)
推荐(0)
2021年10月26日
实验1 类与对象
摘要: 实验三 实验三代码如下: 1、Complex类实现: #include<iostream> #include<cmath> class Complex{ public: Complex(){ } Complex(double x,double y=0){ a = x; b = y; } Comple
阅读全文
posted @ 2021-10-26 20:05 suu`
阅读(26)
评论(4)
推荐(0)
公告