看板 C_and_CPP 關於我們 聯絡資訊
另一種 C++03 前的作法, 但是對容器限制的設計並不算好: struct bar {}; template<template<typename, typename> class C, class Alloc> void foo(C<bar, Alloc> &t) { } int main() { std::vector<bar> a; std::vector<int> b; foo(a); foo(b); return 0; } -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 140.112.29.148 ※ 編輯: Feis 來自: 140.112.29.148 (03/05 23:11)
diabloevagto:有任何 key word 可以查詢這個用法嗎? 03/05 23:44
dirkc:template template parameter? 03/05 23:47
dirkc:本來也想試試,但是一直堆不出順序,原來是多Alloc。厲害 03/05 23:52
※ 編輯: Feis 來自: 140.112.29.148 (03/06 01:26)