The C++ 'const' Declaration: Why & How
摘要:
The 'const' system is one of the really messy features of C++.It is simple in concept: variables declared with ‘const’ added become constants and cannot be altered by the program. However it is also used to bodge in a substitute for one of the missing features of C++ and there it gets horrid 阅读全文
posted @ 2012-01-05 13:36 compilerTech 阅读(280) 评论(0) 推荐(0) 编辑