大约有 2,600 项符合查询结果(耗时:0.0099秒) [XML]

https://www.tsingfun.com/it/cp... 

编译器内部的秘密--微软的编译器是如何解析Try/Catch/Throw的 - C/C++ - 清...

... 0, NULL, NULL, &tcatchArrInt }; 你看,一句throw 2编译后就存储了如此之多的信息。 所以,最终的代码扩展成了如下形式: _TypeDescriptor tDescInt = typeid(int); _CatchableType tcatchInt = { 0, &tDescInt, 0, 0, 0, 0, NULL, }; _CatchableTyp...
https://www.tsingfun.com/it/cp... 

编译器内部的秘密--微软的编译器是如何解析Try/Catch/Throw的 - C/C++ - 清...

... 0, NULL, NULL, &tcatchArrInt }; 你看,一句throw 2编译后就存储了如此之多的信息。 所以,最终的代码扩展成了如下形式: _TypeDescriptor tDescInt = typeid(int); _CatchableType tcatchInt = { 0, &tDescInt, 0, 0, 0, 0, NULL, }; _CatchableTyp...
https://www.tsingfun.com/it/cp... 

编译器内部的秘密--微软的编译器是如何解析Try/Catch/Throw的 - C/C++ - 清...

... 0, NULL, NULL, &tcatchArrInt }; 你看,一句throw 2编译后就存储了如此之多的信息。 所以,最终的代码扩展成了如下形式: _TypeDescriptor tDescInt = typeid(int); _CatchableType tcatchInt = { 0, &tDescInt, 0, 0, 0, 0, NULL, }; _CatchableTyp...
https://www.tsingfun.com/it/cp... 

编译器内部的秘密--微软的编译器是如何解析Try/Catch/Throw的 - C/C++ - 清...

... 0, NULL, NULL, &tcatchArrInt }; 你看,一句throw 2编译后就存储了如此之多的信息。 所以,最终的代码扩展成了如下形式: _TypeDescriptor tDescInt = typeid(int); _CatchableType tcatchInt = { 0, &tDescInt, 0, 0, 0, 0, NULL, }; _CatchableTyp...
https://www.tsingfun.com/it/cp... 

编译器内部的秘密--微软的编译器是如何解析Try/Catch/Throw的 - C/C++ - 清...

... 0, NULL, NULL, &tcatchArrInt }; 你看,一句throw 2编译后就存储了如此之多的信息。 所以,最终的代码扩展成了如下形式: _TypeDescriptor tDescInt = typeid(int); _CatchableType tcatchInt = { 0, &tDescInt, 0, 0, 0, 0, NULL, }; _CatchableTyp...
https://www.tsingfun.com/it/tech/886.html 

快速开发CSS的利器LESS 系列教程 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...定义了三个块,定义了一个变量@bacColor,进行了颜色值的存储,之后由于每个块的背景颜色不同,因此直接使用变量进行计算。需要注意的是,变量与操作符(+、-符号)之间需要使用空格进行分隔。对于代码中.common-div如果不...
https://www.tsingfun.com/ilife/relax/1851.html 

世界上最经典的25句话 [转] - 轻松一刻 - 清泛网 - 专注C/C++及内核技术

...         22、我们确实活得艰难,一要承受种种外部的压力,更要面对自己内心的困惑。在苦苦挣扎中,如果有人向你投以理解的目光,你会感到一种生命的暖意,或许仅有短暂的一瞥,就足以使我感奋不已     ...
https://www.tsingfun.com/it/cpp/1197.html 

cmake与autoconf+automake的对比 - C/C++ - 清泛网 - 专注C/C++及内核技术

...lse(my) endif(my) while(condition) endwhile(condition) 执行外部命令 exec_program(commd ) 子模块 include() 信息输出 messge(STATUS "messge") 项目 project(name) 我知道的就这些,大家可以帮忙指正补充...
https://www.tsingfun.com/it/cpp/1254.html 

一分钟明白 VS manifest 原理 - C/C++ - 清泛网 - 专注C/C++及内核技术

...建manifest来指定系统的和CRT的assembly版本。 除了这样产生外部的manifest file,还有embedded manifest信息可以被写到所生成的二进制文件内 Set porperty->configuration properties->manifest tool->embed manifest To Yes 对于xp及早前的windows版本,external ...
https://www.tsingfun.com/it/cpp/1383.html 

C++ 线程安全的单例模式 - C/C++ - 清泛网 - 专注C/C++及内核技术

...onStatic* getInstance() { return m_instance; } }; //外部初始化 before invoke main const SingletonStatic* SingletonStatic::m_instance = new SingletonStatic; (完) C++ 线程 单例模式