标题:traits问题
取消只看楼主
花脸
Rank: 8Rank: 8
等 级:蝙蝠侠
威 望:9
帖 子:788
专家分:907
注 册:2017-1-4
结帖率:95.37%
已结贴  问题点数:20 回复次数:2 
traits问题
#include <iostream>  
#include <typeinfo>
#include <iterator>

using namespace std;  
 
class A
{
    public:
        A(int i=10)
        {
            k=i;   
        }
        int k;
};

template<class it>
void fun(it)
{
     typename iterator_traits<it>::reference reference;//编译时这行总是提示  [Error] 'reference' declared as reference but not initialized
        cout<<typeid(reference).name()<<endl;
}
int main( )   
{  
   
   A *a=new A(6);
   fun(a);
}
搜索更多相关主题的帖子: include class int fun reference 
2018-09-26 20:51
花脸
Rank: 8Rank: 8
等 级:蝙蝠侠
威 望:9
帖 子:788
专家分:907
注 册:2017-1-4
得分:0 
回复 4楼 Jonny0201
好的谢谢。
2018-09-27 15:58
花脸
Rank: 8Rank: 8
等 级:蝙蝠侠
威 望:9
帖 子:788
专家分:907
注 册:2017-1-4
得分:0 
回复 3楼 rjsp
谢谢
2018-09-27 15:58



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-490019-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.024336 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved