作者Feis (永遠睡不著 @@)
看板C_and_CPP
標題Re: [問題] template的語法
時間Wed Mar 5 23:02:21 2014
另一種 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)