精心编撰的题目们 C++ 模板编程 template <typename T> T foo(T a, T b); // 显式实例化 template <long> long foo(long a, long b); // 具象化 template <> string foo<string>(string a, string b) {} template <> string foo(string a, string b) {} 命名空间 常见一些的命名空间的用法 std::cout; using std::cout; using n...