在C卷1中的思考,第16章:模板简介.
上下文:
上下文:
Notice that instead of just saying:
friend iterator; // Make it a friend
This code has:
friend class iterator; // Make it a friend
This is important because the name “iterator” is already in scope,from an included file.
Eckel上面的意思是什么?
似乎朋友迭代器正确编译,我看不出差异.有人能说出答案吗?谢谢
解决方法
根据C 03标准第11.4节:
精细类型说明符应在类的朋友声明中使用.
因此,根据规范,编译器将警告您迭代器的友元声明必须是详细的类名.如果不是,则编译器在该特定方面不符合标准.
什么是详细说明类型说明符?
C使用详细的类型说明符来明确地告诉编译器将类视为一个类.我认为MSDN可以比我更好地解释它,所以请查看this以获得详细解释.