模板专业化需求
这很简单,我一直想弄清楚它是如何实际使用的,
template<class C>
struct P{
};
template<>
struct P<int>{};
这种特定专业化是否有真正的应用程序?
This is very easy, I am stuck to figure out how that is used actually,
template<class C>
struct P{
};
template<>
struct P<int>{};
Is there a real application for such specific specialization ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
虽然您的具体示例似乎不太有趣,但模板专业化已被广泛使用。这是一个例子:
while your specific example doesn't seem too interesting, template specialization is widely used. Here's an example: