摘要:
C++11中增加了final与override关键字,貌似是从Java语言中借鉴而来,用途也一样。看例子代码:01.#include 02.03.usingnamespacestd;04.05./* use final on a class to prevent inheriting; compil... 阅读全文
摘要:
Introduction:Before the possibilities of the newC++ language standard,C++11, the use oftemplateswas quite limited when it came to implementing for ins... 阅读全文
摘要:
Variadic macros are function-like macros that contain a variable number of arguments.RemarksTo use variadic macros, the ellipsis may be specified as t... 阅读全文