程式設計中的runtime error問題

2021-06-19 09:55:22 字數 1541 閱讀 1888

前幾天在程式設計中,**如下:

標頭檔案:errorhandlingmodule.h

#ifndef errorhandlingmodule_h

#define errorhandlingmodule_h

#include

using namespace std;

namespace samserrorhandling

#endif

實現檔案:errorhandlingmodule.cpp

#include

#include

#include

#include

#include "errorhandlingmodule.h"

using namespace std;

namespace samserrorhandling

int handlenotanumbererror(void)

int handleruntimeerror(runtime_error theruntimeerror)

}標頭檔案:promptmodule.h

#ifndef promptmodule_h

#define promptmodule_h

namespace samsprompt

#endif

實現檔案:pormptmodule.cpp

#include

#include "promptmodule.h"

namespace samsprompt

bool userwantstocontinueyorn(const char *thethingwearedoing) ;

}while (invalidcharacterwasentered);

return (donecharacter != 'n');                //true when not "n"}}

主函式:main.cpp

#include

//#include

#include "errorhandlingmodule.h"

#include "promptmodule.h"

#include

using namespace std;

char getoperator(void)

float getoperand(void)

float accumulate(const char theoperator, const float theoperand) ;

return myaccumulator;

}int main(int argc, char * argv) 

catch(runtime_error runtimeerror)

catch(...) ;

}while (samsprompt::userwantstocontinueyorn("more? "));  

return 0;

}剛開始出現了種種的問題,後來發現是少了標頭檔案#include ,除錯了十幾天終於成功了,歡喜一下吧

程式設計中的感悟

程式設計中的感悟1.學習應該從基礎打起,不要一開始就嘗試最高深的技術。2.每看一本書,不要說這章我以前學習過了,也掌握的很好,因此我可以跳過這一章看更重要的了。3.對於作業,遇到不會的盡量不要立刻向別人請教。如果實在解決不了的問題,可以先完成你會的,然後把一些特別的難點提煉出來,向高手請教。不要指望...

程式設計中的感悟

1.學習應該從基礎打起,不要一開始就嘗試最高深的技術。2.每看一本書,不要說這章我以前學習過了,也掌握的很好,因此我可以跳過這一章看更重要的了。3.對於作業,遇到不會的盡量不要立刻向別人請教。如果實在解決不了的問題,可以先完成你會的,然後把一些特別的難點提煉出來,向高手請教。不要指望書本和行家能幫你...

程式設計中的感悟

1.學習應該從基礎打起,不要一開始就嘗試最高深的技術。2.每看一本書,不要說這章我以前學習過了,也掌握的很好,因此我可以跳過這一章看更重要的了。3.對於作業,遇到不會的盡量不要立刻向別人請教。如果實在解決不了的問題,可以先完成你會的,然後把一些特別的難點提煉出來,向高手請教。不要指望書本和行家能幫你...