摘要:
变长参数 参数个数类型不确定的函数, c语言例子如下 Technically to use variable number of arguments in C you include stdarg.h. From that you'll get the va_list type as well as 阅读全文
摘要:
An introduction to C++'s SFINAE concept: compile-time introspection of a class memberPosted on Sat 31 October 2015 inC++原文链接:http://jguegant.github.io... 阅读全文
摘要:
The Pimpl technique is a useful way to minimize coupling, and separate interface and implementation. Here's a way to simplify Pimpl deployment.By Vlad... 阅读全文
摘要:
This topic demonstrates how to convert various Visual C++ string types into other strings. The strings types that are covered includechar *,wchar_t*,_... 阅读全文
摘要:
Today's little program demonstrates how you can manipulate the positions of desktop icons.The entire program is just scaffolding to get us far enough ... 阅读全文
摘要:
原文链接:http://forums.codeguru.com/showthread.php?315371-Visual-C-Debugging-How-to-use-ASSERT-and-deal-with-assertions-failuresQ:What is an assertion?A:A... 阅读全文