模板专门化 round-lambda 表示法
template <class T, class I> struct A; //EDIT: template <class T> struct A; : OK
template <class T, class I>
struct A<T(I)>
{
};
void main()
{
A< int(char) > b;
}
这段代码无法编译。错误在哪里? 谢谢
template <class T, class I> struct A; //EDIT: template <class T> struct A; : OK
template <class T, class I>
struct A<T(I)>
{
};
void main()
{
A< int(char) > b;
}
This code doesn't compile. WHere is the mistake ?
THanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
很抱歉回答自己,但这也许对其他用户有用
sorry to answer myself but perhaps that will useful for other users