欢迎来到麦多课文档分享! | 帮助中心 海量文档,免费浏览,给你所需,享你所想!
麦多课文档分享
全部分类
  • 标准规范>
  • 教学课件>
  • 考试资料>
  • 办公文档>
  • 学术论文>
  • 行业资料>
  • 易语言源码>
  • ImageVerifierCode 换一换
    首页 麦多课文档分享 > 资源分类 > PPT文档下载
    分享到微信 分享到微博 分享到QQ空间

    C++ for the MFE class at UC BerkeleySession #2.ppt

    • 资源ID:379228       资源大小:1.70MB        全文页数:28页
    • 资源格式: PPT        下载积分:2000积分
    快捷下载 游客一键下载
    账号登录下载
    微信登录下载
    二维码
    微信扫一扫登录
    下载资源需要2000积分(如需开发票,请勿充值!)
    邮箱/手机:
    温馨提示:
    如需开发票,请勿充值!快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
    如需开发票,请勿充值!如填写123,账号就是123,密码也是123。
    支付方式: 支付宝扫码支付    微信扫码支付   
    验证码:   换一换

    加入VIP,交流精品资源
     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    C++ for the MFE class at UC BerkeleySession #2.ppt

    1、C+ for the MFE class at UC Berkeley Session #2,Yuli Kaplunovsky MFE, MBA, MS-Tax, CFA yuliFinancialS (408) 884 5965,2,Inheritance: derive one class from another,class Mammal public:Mammal();Mammal();int GetAge();void SetAge(int);int GetWeight();void SetWeight();void Speak();void Sleep();protected:in

    2、t itsAge;int itsWeight; ;,enum BREED SHETLAND, DOBERMAN, LAB ;class Dog : public Mammal public:Dog();Dog();BREED GetBreed() const;void SetBreed(BREED);protected:BREED itsBreed; ;,void main() Dog fido;fido.SetAge(3);fido.SetBreed( SHETLAND );cout “Fido is “ fido.GetAge() “ years oldn“; ,3,Inheritance

    3、: Overriding Functions,class Mammal public:/ constructorsMammal() cout “Mammal constructor.n“; Mammal() cout “Mammal destructor.n“; void Speak() cout “Mammal sound!n“; void Sleep() cout “shhh. Im sleeping.n“; protected:int itsAge;int itsWeight; ;,class Dog : public Mammal public:Dog() cout “Dog cons

    4、tructor.n“; Dog() cout “Dog destructor.n“; void WagTail() cout “Tail wagging.n“; void BegForFood() cout “Begging for food.n“; void Speak() cout “Woof!n“; private:BREED itsBreed; ;,int main() Mammal bigAnimal;Dog fido;bigAnimal.Sleep();bigAnimal.Speak();fido.Sleep();fido.Speak();return 0; Mammal cons

    5、tructor. Mammal constructor. Dog constructor. Shh. Im sleeping. Mammal sound! Shh. Im sleeping. Woof! Dog destructor. Mammal destructor. Mammal destructor.,4,Pointer to a class,void PrintDogsAge( Dog * P ) printf(“The age of the ”“Dog is: %d n“, P-GetAge(); ,void main() Dog *pFido = new Dog;pFido-Se

    6、tAge( 4 );PrintDogsAge( pFido );Dog *pMyDog;pMyDog = pFido;PrintDogsAge( pMyDog );Dog Barky;Barky.SetAge(3);pMyDog = ,Exercise: Write the output of this program,5,Virtual,class Mammal public:Mammal():itsAge(1) cout “Mammal constructor.n“; Mammal() cout “Mammal destructor.n“; void Move() cout “Mammal

    7、 move one stepn“; virtual void Speak() cout “Mammal speak!n“; protected:int itsAge; ;,class Dog : public Mammal public:Dog() cout “Dog Constructor.n“; Dog() cout “Dog destructor.n“; void WagTail() cout “Wagging Tail.n“; void Speak() cout “Woof!n“; void Move() cout “Dog moves 5 steps.n“; ;,int main()

    8、 Mammal *pDog = new Dog;pDog-Move();pDog-Speak(); Mammal constructor. Dog Constructor. Mammal move one step Woof!,Dog Fido;Fido.Move();Fido.Speak();Mammal constructor. Dog Constructor. Dog moves 5 steps Woof! Dog destructor Mammal destructor,6,Virtual Why do we need it?,For example, you could create

    9、 many different types of windows, including dialog boxes, scrollable windows, and list boxes, and give them each a virtual draw() method. By creating a pointer to a window and assigning dialog boxes and other derived types to that pointer, you can call draw() without regard to the actual run-time ty

    10、pe of the object pointed to. The correct draw() function will be called.,Exercise: Write example of three classes: base class (CWindow), and two derivative classes (CListBox and CDialogBox) which implement the function draw differently. And a function that receives a pointer of the type CWindow, and

    11、 calls the draw function.,7,Static variables,class Cat public:Cat(int age):itsAge(age) HowManyCats+; virtual Cat() HowManyCats-; virtual int GetAge() return itsAge; virtual void SetAge(int age) itsAge = age; static int HowManyCats;private:int itsAge; ;,int Cat:HowManyCats = 0; void main() const int

    12、MaxCats = 5; int i;Cat *CatHouseMaxCats;for (i = 0; iGetAge() “ years oldn“;delete CatHousei;CatHousei = 0; ,There are 5 cats left! Deleting the one which is 0 years old There are 4 cats left! Deleting the one which is 1 years old There are 3 cats left! Deleting the one which is 2 years old There ar

    13、e 2 cats left! Deleting the one which is 3 years old There are 1 cats left! Deleting the one which is 4 years old,8,Static Function simple,class Cat public: static int GetNumberOfCats() return HowManyCats; static int HowManyCats;private:int itsAge; ;,int Cat:HowManyCats = 4; void main() int I = Cat:

    14、GetNumberOfCats(); ,9,Static Function very complicated,class CBuf public:int A;void CloseCompresBuf();static void StaticCloseCompresBuf( void *B ) (CBuf *)B)-CloseCompresBuf(); ;void CBuf:CloseCompressedBuf() printf(“A = %dn“, A ); ,typedef *FUNC(void *); FUNC *gFunc; void *gParam;void Set_Timer_Tim

    15、eout( FUNC Func, void *Param ) gFunc = Func;gParam = Param; void Timer_timeout() gFunc( gParam ); ,void main() CBuf *Buf1 = new CBuf;Buf1-A = 11;Set_Timer_Timeout( (FUNC *) CBuf:StaticCloseCompresBuf, Buf1 );Timer_timeout(); / emulate interrupt ,10,Next week:,More examples MFC classes CString etc Wr

    16、iting Windows application using CDialog,Exercise / Homework: This was the basic foundation of C+ Spending ONLY 2.5 hours in class is NOT enough to master the foundation The easiest way to memorize it and get more familiar with it is to surprisingly simple - COPY all the samples and run them one by o

    17、ne on your PC.And based on this foundation,11,MFC Microsoft Foundation Classes,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,class CAboutDlg : public CDialog public:CAboutDlg();enum IDD = IDD_ABOUTBOX ; / Dialog Data protected:virtual void DoDataExchange(CDataExchange* pDX); / DDX/DDV support / Imple

    18、mentation protected:DECLARE_MESSAGE_MAP() ;CAboutDlg:CAboutDlg() : CDialog(CAboutDlg:IDD) void CAboutDlg:DoDataExchange(CDataExchange* pDX) CDialog:DoDataExchange(pDX); BEGIN_MESSAGE_MAP(CAboutDlg, CDialog) END_MESSAGE_MAP(),Implementing CDialog,27,void Capp1Dlg:OnSysCommand(UINT nID, LPARAM lParam)

    19、 if (nID ,28,Next week:,More examples More MFC classes CFile etc Windows application - Part 2,Exercise / Homework: This was the basic foundation of C+ Spending ONLY 2.5 hours in class is NOT enough to master the foundation The easiest way to memorize it and get more familiar with it is to surprisingly simple - COPY all the samples and run them one by one on your PC.And based on this foundation,


    注意事项

    本文(C++ for the MFE class at UC BerkeleySession #2.ppt)为本站会员(赵齐羽)主动上传,麦多课文档分享仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知麦多课文档分享(点击联系客服),我们立即给予删除!




    关于我们 - 网站声明 - 网站地图 - 资源地图 - 友情链接 - 网站客服 - 联系我们

    copyright@ 2008-2019 麦多课文库(www.mydoc123.com)网站版权所有
    备案/许可证编号:苏ICP备17064731号-1 

    收起
    展开