2
允許使用lambda函數作爲模板參數的默認值嗎?有問題的代碼片段是:模板參數值中的Lambdas
template <typename K, typename E, typename C = [](const K& l, const K& r) { return (l < r); }>
class FooBar
{
typedef C compare_fn;
};
如果不是,爲什麼那麼,什麼能夠從函數指針是最通行的替代,一邊? TIA。