书签 分享 收藏 举报 版权申诉 / 46
上传文档赚钱

类型C++ProgrammingLecture6AdvancedTopics[C++编程讲座6高级主题(PPT-46)课件.ppt

  • 上传人(卖家):三亚风情
  • 文档编号:2493617
  • 上传时间:2022-04-25
  • 格式:PPT
  • 页数:46
  • 大小:187KB
  • 【下载声明】
    1. 本站全部试题类文档,若标题没写含答案,则无答案;标题注明含答案的文档,主观题也可能无答案。请谨慎下单,一旦售出,不予退换。
    2. 本站全部PPT文档均不含视频和音频,PPT中出现的音频或视频标识(或文字)仅表示流程,实际无音频或视频文件。请谨慎下单,一旦售出,不予退换。
    3. 本页资料《C++ProgrammingLecture6AdvancedTopics[C++编程讲座6高级主题(PPT-46)课件.ppt》由用户(三亚风情)主动上传,其收益全归该用户。163文库仅提供信息存储空间,仅对该用户上传内容的表现方式做保护处理,对上传内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知163文库(点击联系客服),我们立即给予删除!
    4. 请根据预览情况,自愿下载本文。本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
    5. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007及以上版本和PDF阅读器,压缩文件请下载最新的WinRAR软件解压。
    配套讲稿:

    如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。

    特殊限制:

    部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。

    关 键  词:
    ProgrammingLecture6AdvancedTopics C+ 编程 讲座 高级 主题 PPT 46 课件
    资源描述:

    1、EE4E. C+ ProgrammingContentsIntroductionAn object oriented approach to exception handlingclass myClasspublic: int readFile(.)doif (!end_of_file)/ read the fileelsereturn 1; while not_end_of_file return number_of_bytes_read;The try-catch model of exception handlingApplicationObject 1Method callError

    2、conditiontry clausecatch clauseException handling example#include #include class DivideByZeroException : public exceptionpublic:DivideByZeroException:DivideByZeroException(): exception(Attempted divide by zero) ;double quotient(int num, int den)if (den=0)throw DivideByZeroException();return (double)

    3、(num)/den;int main()int number1,number2;double result;cout number1 number2)try result=quotient(number1,number2);cout The quotient is result endl;catch(DivideByZeroException &dzException)cout Exception! dzException.what() endl;cout nEnter two integers : ;return 0;Re-throwing exceptionsmainObject 2Obj

    4、ect 1 throws exceptionCalls method ofCalls method ofre-throwhandles exceptionre-throwclass MyClass1 public:MyClass1() void aMethod1()trythrow exception();catch (exception &caughtException)cout Exception thrown in aMethod1 endl;throw;class MyClass2 public:MyClass2() void aMethod2()MyClass1 myObject1;

    5、trymyObject1.aMethod1();catch(exception &caughtException)cout Exception re-thrown in aMethod2 endl;throw;int main()MyClass2 myObject2;trymyObject2.aMethod2();catch(exception &caughtException)cout Exception handled in main endl;cout “Program terminates ;return 0;Exception thrown in aMethod1Exception

    6、re-thrown in aMethod2Exception handled in mainProgram terminatesException specificationsint aFunction(int arg)throw (ExceptionA, ExceptionB, ExceptionC) / function body)int aFunction(int arg) / function body)int aFunction(int arg)throw() / function body)int aFunction(int arg) throws IOException / Ja

    7、va / function body)Multi-threading in C+A simple C+ Thread classclass Thread private:string m_strName;public:Thread();Thread(const char* nm);virtual Thread();void setName(const char* nm);string getName() const;void start();virtual void run();void sleep(long ms);void suspend();void resume();void stop

    8、();void setPriority(int p);bool wait(const char* m,long ms=5000);void release(const char* m);/ Thread prioritiesstatic const int P_HIGHEST;static const int P_LOWEST;static const int P_NORMAL;Creating a simple multi-threaded application#include #include using namespace std;#include ou_thread.husing n

    9、amespace openutils;class MyThread : public Threadprivate:int m_nCount;public:MyThread(int n,const char* nm)Thread:setName(nm);m_nCount=n;void run()for (int i=0; im_nCount; i+)cout getName().c_str() : i start();t2-start();t1-stop();t2-stop();catch(ThreadException ex)cout ex.getMessage().c_str();delet

    10、e t1;delete t2;return 0;Thread synchronizationUnsynchronised threadsThread 1Thread 2Update databaseRead databasePre-emptPre-emptSynchronised threadsThread 1Thread 2Update databaseRead databasevoid MyThread:run()wait(MyMutex);for (int i=0; im_nCount; i+)cout getName().c_str() : i start();t2-start();t1-stop();t2-stop();m.release();catch(ThreadException ex)cout start();t1-setPriority(Thread:P_LOWEST);t2-start();t2-setPriority(Thread:P_HIGHEST);t1-stop();t2-stop();catch(ThreadException ex)cout ex.getMessage().c_str();delete t1;delete t2;return 0;And finally.

    展开阅读全文
    提示  163文库所有资源均是用户自行上传分享,仅供网友学习交流,未经上传用户书面授权,请勿作他用。
    关于本文
    本文标题:C++ProgrammingLecture6AdvancedTopics[C++编程讲座6高级主题(PPT-46)课件.ppt
    链接地址:https://www.163wenku.com/p-2493617.html

    Copyright@ 2017-2037 Www.163WenKu.Com  网站版权所有  |  资源地图   
    IPC备案号:蜀ICP备2021032737号  | 川公网安备 51099002000191号


    侵权投诉QQ:3464097650  资料上传QQ:3464097650
       


    【声明】本站为“文档C2C交易模式”,即用户上传的文档直接卖给(下载)用户,本站只是网络空间服务平台,本站所有原创文档下载所得归上传人所有,如您发现上传作品侵犯了您的版权,请立刻联系我们并提供证据,我们将在3个工作日内予以改正。

    163文库