发布时间:2014-02-28 11:29:21
C++ 中的异常和堆栈展开在 C++ 异常结构,控件从 throw 语句的移动到可处理该引发类型的第一个 catch 语句。 ......【阅读全文】
发布时间:2014-02-28 10:04:03
异常处理的基本思想是简化程序的错误代码,为程序键壮性提供一个标准检测机制。也许我们已经使用过异常,但是你会是一种习惯吗,不要老是想着当我打开一个文件的时候才用异常判断一下,我知道对你来说你喜欢用return value或者是print error message来做,你想过这样做会导致Memory Leak,系统退出,代码重复/难读,.........【阅读全文】
发布时间:2014-02-18 11:46:17
This tutorial is for users who are already familiar with Visual Studio VC++ and flex.Create a new workspace and add your lex file (ie lexer.l)Save the following files in the same directory as your workspace: flex.exe , libfl.lib, libfl..........【阅读全文】