首页 > 代码库 > C++问题整理

C++问题整理

1、如何消除"unused parameter"的警告:

http://stackoverflow.com/questions/3599160/unused-parameter-warnings-in-c-code

比较通用的做法就是(void) x;但是我更欣赏gcc上的__attribute__,可惜MSVC不支持类似的语法。

 

2、关于C++中的反射机制:

http://stackoverflow.com/questions/582331/is-there-a-way-to-instantiate-objects-from-a-string-holding-their-class-name

Java是支持反射的,但是C++却没有。这篇文章能够回答两个问题:1、为什么C++不支持反射;2、如何在一个C++应用中实现反射的功能。