摘要: include // 函数模板 template bool equivalent(const T& a, const T& b){ return !(a < b) && !(b < a); } // 类模板 template // 默认参数 class bignumber{ T _v; public 阅读全文
posted @ 2025-12-15 09:11 annie1991 阅读(0) 评论(0) 推荐(0)