Fork me on GitHub
摘要: 猜猜下面这段代码的输出是什么: template <typename T> struct Base { void DoThings() { std::cout << "A\n"; } }; template <typename T> struct Derived: Base<T> { void Do 阅读全文
posted @ 2025-11-10 10:07 apocelipes 阅读(173) 评论(0) 推荐(4)