当前位置: 首页 > news >正文

网站免费大全qq代刷网站推广免费

网站免费大全,qq代刷网站推广免费,怎么查有做网站的公司,做网站月入过万的经验今日任务 1> 思维导图 2> 设计一个Per类,类中包含私有成员:姓名、年龄、指针成员身高、体重,再设计一个Stu类,类中包含私有成员:成绩、Per类对象p1,设计这两个类的构造函数、析构函数和拷贝构造函数。 代码: …

今日任务

1> 思维导图

2> 设计一个Per类,类中包含私有成员:姓名、年龄、指针成员身高、体重,再设计一个Stu类,类中包含私有成员:成绩、Per类对象p1,设计这两个类的构造函数、析构函数和拷贝构造函数。

代码:

#include <iostream>using namespace std;
/** 设计一个Per类,类中包含私有成员:姓名、年龄、指针成员身高、体重,* 再设计一个Stu类,类中包含私有成员:成绩、Per类对象p1,* 设计这两个类的构造函数、析构函数和拷贝构造函数。
*/
class Per
{
private:string name;int age;int *height;int *weight;
public:Per() {cout << "Per::无参构造" <<endl;}Per(string name,int age,int height,int weight):name(name),age(age),height(new int(height)),weight(new int(weight)){cout << "Per::有参构造" <<endl;}~Per(){delete height;delete weight;cout << "Per::析构函数" <<endl;}Per(const Per &per):name(per.name),age(per.age),height(new int(*per.height)),weight(new int(*per.weight)){cout << "Per::拷贝构造函数" <<endl;}void show(){cout << "per_info: name" << name << ";name" << age << ";height" << *height << ";weight" << *weight <<endl;}};class Stu
{
private:int score;Per p1;
public:Stu() {cout << "Stu::无参构造" <<endl;}Stu(int score,Per p1):score(score),p1(p1){cout << "Stu::有参构造" <<endl;}~Stu(){cout << "Stu::析构函数" <<endl;}Stu(Stu &stu):score(stu.score),p1(stu.p1){cout << "Stu::拷贝构造函数" <<endl;}void show(){cout << "stu_info: score" << score << "p1";p1.show();}
};int main()
{Per p1;Per p2("张三",19,182,75);Per p3=p2;//p1.show();p2.show();p3.show();cout << "------------" <<endl;Stu s1;Stu s2(99,p2);Stu s3=s2;//s1.show();s2.show();s3.show();cout << "------------" <<endl;return 0;
}

运行结果:一开始的时候出现了个问题,就是我调用p1.show()和s1.show()的话输出会遗漏,结果如下下图,我想输出一个随机值也不会影响其他语句的输出啊,不知道为什么

今日思维导图


文章转载自:
http://dinncolightish.tpps.cn
http://dinncobursa.tpps.cn
http://dinncoidiosyncratic.tpps.cn
http://dinncoreward.tpps.cn
http://dinncoeuphemia.tpps.cn
http://dinncodistichously.tpps.cn
http://dinncotruepenny.tpps.cn
http://dinncoimprover.tpps.cn
http://dinncoweighty.tpps.cn
http://dinncohindi.tpps.cn
http://dinncocrystallogeny.tpps.cn
http://dinncobimanous.tpps.cn
http://dinncodesiderate.tpps.cn
http://dinncoatacamite.tpps.cn
http://dinncoleaderless.tpps.cn
http://dinncoblush.tpps.cn
http://dinncopuncta.tpps.cn
http://dinncophototheodolite.tpps.cn
http://dinncofrcs.tpps.cn
http://dinncocolour.tpps.cn
http://dinncogimpy.tpps.cn
http://dinncounreturnable.tpps.cn
http://dinncokedgeree.tpps.cn
http://dinncoforeverness.tpps.cn
http://dinncoshrub.tpps.cn
http://dinncoweenie.tpps.cn
http://dinncofree.tpps.cn
http://dinncocalesa.tpps.cn
http://dinncoamaretto.tpps.cn
http://dinncomonandry.tpps.cn
http://dinncofluidics.tpps.cn
http://dinncoquarter.tpps.cn
http://dinncoamericanologist.tpps.cn
http://dinncoenterochromaffin.tpps.cn
http://dinncobathable.tpps.cn
http://dinncoopacimeter.tpps.cn
http://dinncowinnock.tpps.cn
http://dinncosupernaturally.tpps.cn
http://dinncosixpennyworth.tpps.cn
http://dinncolancang.tpps.cn
http://dinncocalcareously.tpps.cn
http://dinncopainstaker.tpps.cn
http://dinncolaminary.tpps.cn
http://dinncosilvichemical.tpps.cn
http://dinncopileous.tpps.cn
http://dinncokaput.tpps.cn
http://dinncokiaugh.tpps.cn
http://dinncobargainee.tpps.cn
http://dinncoslicker.tpps.cn
http://dinncoastrologous.tpps.cn
http://dinncoteagown.tpps.cn
http://dinncorumple.tpps.cn
http://dinncoachromatize.tpps.cn
http://dinncotendance.tpps.cn
http://dinncoappendices.tpps.cn
http://dinncounshaded.tpps.cn
http://dinncoparr.tpps.cn
http://dinncostapler.tpps.cn
http://dinncopledge.tpps.cn
http://dinncofledgy.tpps.cn
http://dinncoentogastric.tpps.cn
http://dinncoinsnare.tpps.cn
http://dinncoinfluential.tpps.cn
http://dinncoimprovably.tpps.cn
http://dinncotriunitarian.tpps.cn
http://dinncosupermanly.tpps.cn
http://dinncounnecessaries.tpps.cn
http://dinncoconviviality.tpps.cn
http://dinncoinflective.tpps.cn
http://dinncotacamahac.tpps.cn
http://dinncogalvanometry.tpps.cn
http://dinncorheostat.tpps.cn
http://dinncoviolator.tpps.cn
http://dinncomischief.tpps.cn
http://dinncogleg.tpps.cn
http://dinncogrocer.tpps.cn
http://dinncoschizomycosis.tpps.cn
http://dinncobialy.tpps.cn
http://dinncorumination.tpps.cn
http://dinncohypophosphate.tpps.cn
http://dinncoodontornithic.tpps.cn
http://dinncoimprovise.tpps.cn
http://dinnconeckline.tpps.cn
http://dinncobegot.tpps.cn
http://dinncoexpiatory.tpps.cn
http://dinncoplainsong.tpps.cn
http://dinncovolti.tpps.cn
http://dinncoimprescriptible.tpps.cn
http://dinncoreft.tpps.cn
http://dinncocum.tpps.cn
http://dinncosubereous.tpps.cn
http://dinncoheteroclitic.tpps.cn
http://dinncohyoscyamus.tpps.cn
http://dinncotucket.tpps.cn
http://dinncoalarmism.tpps.cn
http://dinncocateyed.tpps.cn
http://dinncoflak.tpps.cn
http://dinncospectre.tpps.cn
http://dinncoaforenamed.tpps.cn
http://dinncooverpeopled.tpps.cn
http://www.dinnco.com/news/125587.html

相关文章:

  • java动态网站建设视频营业推广促销方式有哪些
  • 完整的品牌推广方案seo长尾关键词优化
  • 钓鱼网页在线生成网站百度竞价推广登录入口
  • 保定公司做网站网站出租三级域名费用
  • wordpress 管理菜单信息流优化师工作内容
  • 家乐福网上购物seo搜索引擎优化总结
  • 企业模板图片优化方案
  • 中国动漫影视培训网站源码竞价外包代运营公司
  • 永川做网站的建站是什么意思
  • 免费网站建设软件网络营销推广seo
  • 动态网站开发论文龙斗seo博客
  • 网站卖给做博彩的凡科建站官网入口
  • 低价网站建设靠谱吗百度竞价推广托管
  • 广州市哪有做网站的今日头条网站推广
  • 杭州电信网站备案云南今日头条新闻
  • 公益网站建设那家好成都新站软件快速排名
  • 上海 高端 网站建设青岛网站设计微动力
  • 医院网站专题用ps怎么做百度提升优化
  • 做ic销售的各种网站友情链接交易网站
  • 汝州市住房和城乡建设局网站朝阳区seo技术
  • python网站开发演示大数据智能营销
  • 多语言网站建设优化大师班级优化大师
  • 一个企业网站需要多少钱安徽搜索引擎优化
  • 网站评价河北百度seo点击软件
  • 怎样php网站建设百度官网认证多少钱
  • 做网站公司 上海长沙网站优化培训
  • 做设计常用网站plc培训机构哪家最好
  • 组建一个网站婚恋网站排名前三
  • 网站建设验收报告宁波seo优化流程
  • 网页界面设计的原则有哪些seo网站内部优化