- 1、本文档共28页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
* * * * Answer: To avoid circular includes, use forward declarations * Minimize compile dependency. Speeds up compilation. (don’t need to recompile every time gui.H changes) * * Discuss make/makefiles Errors can occure in any of the three above mentioned units… * * Much like a java reference (but more explicit) A pointer is a variable that contains the address of an object in memory. Line 1 – x is an integer, give it value 10 Line 3 – p gets the address of x * * * Just like java. But you have to think about pointers. * No garbage collection. * * * Ask about virtual. (what’s wrong here…) * * Using p to “point” at the method. * On the left we have a pointer that we must dereference. Still must delete p on the left – problem. on the right, everything is ok. C++ Mini-Course Part 1: Mechanics Part 2: Basics CPSC 221, Texas AM University Adapted from: Brown CS123 /courses/cs123/resources/c++_mini_course.ppt C++ Mini-Course Part 1: Mechanics C++ is a superset of C New Features include Classes (Object Oriented) Templates (Standard Template Library) Operator Overloading Slightly cleaner memory operations Some C++ code #ifndef __SEGMENT_HEADER__ #define __SEGMENT_HEADER__ class Point; class Segment { public: Segment(); virtual ~Segment(); private: Point *m_p0, *m_p1; }; #endif // __SEGMENT_HEADER__ Segment.h #include “Segment.h” #include “Point.h” Segment::Segment() { m_p0 = new Point(0, 0); m_p1 = new Point(1, 1); } Segment::~Segment() { delete m_p0; delete m_p1; } Segment.cpp #include “Segment.h” #include iostream #include Insert header file at this point. Use library header. Header Guards #ifndef __SEGMENT_HEADER__ #define __SEGMENT_HEADER__ // contents of Segment.h //... #endif To ensure it is safe to include a file more than once. Header Guards #ifndef __SEGMENT_HEADER__ #define __SEGMENT_HEADER__ // contents of segment.H //... #endif To ensure it is safe to include a file more than once. If this variable is not def
您可能关注的文档
最近下载
- 五性设计分析报告-测试性保证大纲模板(方案阶段).doc VIP
- 5S实施的方法与技巧(ppt71页).pptx
- 2017年甘肃高等学校教学名师奖高职高专部分候选人推荐表.PDF
- 【市质检】福州市2024-2025学年高三年级第一次质量检测 政治试卷(含答案).docx
- 中国绝经管理与绝经激素治疗指南2023版.pptx
- 2025年高等教育中药化学自学考试经典试题及答案解析.doc
- 2022CSCO结直肠癌诊疗指南.pdf
- 2023-2024年部编版语文五年级下册第四单元第三课时《军神》说课稿附反思含板书及知识点汇总.pptx
- 冠脉介入治疗PPT课件.pptx VIP
- 5s管理培训优质课件.ppt VIP
文档评论(0)