VC.STL Newsgroup Good Questions(二)

系统 1710 0

VC.STL Newsgroup Good Questions( )

    使用 Templated Member Function C2664 编译错误, Why?

Article last modified on 2002-5-29

----------------------------------------------------------------

The information in this article applies to:

-         Microsoft Visual C++, 32-bit Editions, version 6.0, SP5

----------------------------------------------------------------

 

Question:

下面的代码编译时报告 C2664 错误:

Error C2664: '__thiscall std::list<int,class std::allocator<int> >::std::list<int,class std::allocator<int> >(unsigned int,const int &,const class std::allocator<int> &)' : cannot convert parameter 1 from 'class std::istream_iterator<int,char,struct std::char_traits<char> > (__cdecl *)(void)' to 'unsigned int'         This conversion requires a reinterpret_cast, a C-style cast or function-style cast

代码如下:
istream_iterator<int> intFileBegin();

istream_iterator<int> intFileEnd;

list<int> intList(intFileBegin, intFileEnd);

 

Answer:

VC6 的库文件刚发布的时候,编译器还不支持 Templated Member Function 。这样, Templated List Constructor 无法得到 Non-List Iterators

现在编译器虽然支持 Templated Member Function ,但要想编译通过,你还是需要一个新的标准库。前面的代码应该在以下环境中可以编译通过:

n         VC 7

n         VC6 with Dinkumware library upgrade

n         VC6 with STLport

 

如果你没有这样的编译环境,那还是不要使用 Templated Member Function 。你可以这么做:


istream_iterator<int> intFileBegin(cin);

istream_iterator<int> intFileEnd;

list<int> intList;

copy(intFileBegin,intFileEnd,back_inserter(intList));

 

这样同样可以把 istream 中的东西导入到 list 中。

 

(To be Continued)

 

Written by zhengyun@tomosoft.com

Trackback: http://tb.blog.csdn.net/TrackBack.aspx?PostId=12674


VC.STL Newsgroup Good Questions(二)


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论