摘要: #include template void f1(T(&ary)[bound]) { T x; for (int i = 0; i < bound; i++) { x = ary[i]; std::cout << x << std::endl; } } int main() { int a[] = { 1, 2, 3,... 阅读全文
posted @ 2017-03-05 13:29 zzyoucan 阅读(121) 评论(0) 推荐(0) 编辑