在 PLNews 上看到有人整理了最近一次委員會討論的內容:
Trip Report: April 2007 ISO C++ Standards Meeting
Trip Report: July 2007 ISO C++ Standards Meeting
Trip Report: October 2007 ISO C++ Standards Meeting
整理一下目前比較感興趣的 feature
Template aliases (typedef templates)
n2258.pdf
template<typename era>
using Gundam = MobileSuit<dual_eye, antenna, era>;
Gundam<UC> RX78; //真是爛例子 不過臨時想的就別太在意了
要當作單純的 generic typedef 來使用也是可以的
Variadic templates (type varargs for templates)
n2087.pdf
n2242.pdf
簡單來說就是變動長度的模板參數,proposal 實作了一個 printf 當作例子
用來實作 tuple 也很方便 (boost::tuple [...]
十一月 6, 2007
» C++0x 的新東西
» C++0x 的新東西
在 PLNews 上看到有人整理了最近一次委員會討論的內容:







