青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

數據加載中……

去除Warning C4251 “class 'std::vector<_Ty>' needs to have dll-interface to be used by clients of class”


VS.NET 2003 Warning C4251
Microsoft Visual Studio .NET 2003 Warning C4251

I always try to get rid of compiler warnings. It just seems like a good thing to do. Warning-free code makes me happy. But some warnings just don't want to go away, and this is one of them. I use STL frequently, and my own templates from time to time, and every time I try to turn some code with templates into a DLL I inevitably end up with hundreds of warnings that look like this:

warning C4251: 'AClass::m_vector' : class std::vector<_Ty>' needs
to have dll-interface to be used by clients of class 'AClass'

This happens with my own non-STL template classes too:

warning C4251: 'AClass::m_variable' : class 'SomeTemplate<T>' needs
to have dll-interface to be used by clients of class 'AClass'

I'm going to explain why I think this warning happens, and what you can do to get rid of it. If you read something below that you think is wrong, please let me know. I am by no means an expert. This is just what I've figured out so far, and I'm as much making notes for myself as anything...

WTF?

I'm going to assume that you are familiar with using __declspec( dllexport ) and __declspec( dllimport ). If not, look it up in the VC++ documentation. I'll assume that you have a macro DLLImportExportMacro that exports or imports conditionally. If you don't know what I'm talking about, just create a Win32 DLL project and look at hte top of the DLLName.h header that is auto-generated.

Anyway, if you mark some class AClass in a DLL as exportable with dllexport, then you have access to that class whenever you import the DLL. You also have access to various internals of that class - superclasses, protected internals (because you can subclass AClass), and anything that is used in inline functions of X (because they are compiled in your importing code, so they have to be exported).

In fact, the documentation explicitly states this in the page titled "Using dllimport and dllexport in C++ Classes" :
As a rule, everything that is accessible to the DLL's client (according to C++ access rules) should be part of the exportable interface. This includes private data members referenced in inline functions

This is the problem. If you have a template SomeTemplate<T>, it is not marked with dllexport because you can only export definitions, not declarations, and a template is not a definition. It's code is only created when you create an instantiation. So when you have this:

class DLLImportExportMacro AClass

{
public:
   SomeTemplate<int> GetVariable() { return y; }
protected:

   SomeTemplate<int> y;
};

Then SomeTemplate<int> is an instantiation of SomeTemplate<T> that is accesible to clients of AClass but is not exported!

Now, if AClass was not exported and you tried to use it in some importing code, you would get link errors. And if you replace SomeTemplate<int> with a non-template non-exported class, and try to call the GetVariable() function in some importing code, you will again get link errors. But calling GetVariable() as defined above in importing code does not produce any errors!. It works just fine!

I think this is a case where something works even though it shouldn't. SomeTemplate<int> is not exported. So the warning is not incorrect. But in calling code, whenever you might use SomeTemplate<int>, the compiler is going to automatically instantiate SomeTemplate<T>, creating a local version of SomeTemplate<int>. They are the same code, so all the same symbols are defined, and there are no link errors. I guess we could call this "implicit exporting" - the header for SomeTemplate<T> is necessarily exported, and the template instantiation mechanism implicitly imports it by re-generating the code locally.

I suppose it's possible that you might have compiled the DLL containing AClass with different flags or something. In that case you might be able to get a link error. I haven't tried this...

Workaround 1 - Disable the Warning

Ok, so this warning is a nuisance and you want it to go away. One option is to simply disable it. Just put the following code at the bottom of some header that is included before any of the DLL headers (stdafx.h works well for me....):

#pragma warning( disable: 4251 )

This will get rid of your warnings. But in the previous section I noted that there are cases where this warning does tell you something important (when SomeTemplate<T> is replaced by a non-exported non-template class). In that case you will get link errors if you try to access this class from the importing code. So the warning is helpful there.

Of course, it does mean you have to scour the 4251 warnings to see if there is any non-template stuff in there. If you are the only one using your DLL, you'll find out about the link errors soon enough. So maybe disabling is the best option...

I'm going to explain another workaround, but I'll warn you right now that it doesn't work all the time, particularly for STL.

Workaround 2 - Explicit Template Instantiation

Lets look at this code again:

class DLLImportExportMacro AClass

{
public:
   SomeTemplate<int> GetVariable() { return y; }
protected:

   SomeTemplate<int> y;
};

Warning C4251 pops up because SomeTemplate<int> is not exported. Now ideally we would export SomeTemplate<T> and all it's instantiations would be exported, but that only works in fantasy land. In reality, SomeTemplate<T> is a declaration only, and a declaration cannot be exported because there is no actual code to back it up. However, SomeTemplate<int> is a definition, not a declaration, so we can export it. We simply have to mark the instantiation with DLLImportExportMacro. Sounds easy, but since the instantiation is automatically done by the header how the hell are you supposed to mark it with a macro?

Well, you have to beat the compiler to the punch and instantiate the template yourself. This is called explicit instantiation and is simple to do. Here is what you would do for the above example:

class DLLImportExportMacro AClass

{
public:
   SomeTemplate<int> GetVariable() { return y; }
protected:

   template class DLLImportExportMacro SomeTemplate<int>;
   SomeTemplate<int> y;
};

That "template class ..." bit is the explicit instantiation, and we throw your DLL import/export macro in there so that the explicit instantiation is exported. This will shut up the compiler and clear up the C4251 warning. But note that it has no actual effect on the running of your code - it will have worked before. This just avoids the warning.

Workaround 2 For STL

So far I've been working with your hypothetical template class SomeTemplate<T>. Now let's consider the case where SomeTemplate<T> is in fact std::vector<T>:

class DLLImportExportMacro AClass

{
public:
   std::vector<int> GetVariable() { return y; }
protected:

   template class DLLImportExportMacro std::vector<int>;
   std::vector<int> y;
};

This seems easy, right? But it doesn't work. Now you are going to get something like this:

warning C4251: 'std::_Vector_val<_Ty,_Alloc>::_Alval' : 
class std::allocator<_Ty>' needs to have dll-interface to 
be used by clients of class 'std::_Vector_val<_Ty,_Alloc>'

Which will be frustrating. This is because while we all use "std::vector<T>", the actual class definition has a default template parameter defining the allocator, "std::vector<T, std::allocator<T> >". This whole exporting thing cascades to variables inside the templates you want to export. So you have to export the allocator too, and export the full vector template definition:

class DLLImportExportMacro AClass

{
public:
   std::vector<int> GetVariable() { return y; }
protected:

   template class DLLImportExportMacro std::allocator<int>
   template class DLLImportExportMacro std::vector<int,
      std::allocator<int> >;
   std::vector<int> y;
};

If you do this, then the C4251 warning will go away. Hurray! Again, no effect on the actual execution of your code. Just avoiding a warning.

Note that this cascading can happen for your own templates too. And there is one case where it is important - when your template SomeTemplate<T> contains a non-template class object that is not exported. In this case, you have to export that class or you will get link errors.

Workaround 2 for Other STL Classes

We saw above that we also had to export the allocator for std::vector to get the warnings to stop. How about for other STL classes? You had to ask. I've only needed to do this for std::set and std::map, so those are the two I will show. Understand that internally these classes are quite a bit more complicated than std::vector. I'm going to present all 3 (vector, set, and map) as macros that you can cut and paste. Here goes:

Note: In these macros you need to replace 'dllmacro' with whatever your import/export macro is

#define EXPORT_STL_VECTOR( dllmacro, vectype ) \
  template class dllmacro std::allocator< vectype >; \
  template class dllmacro std::vector<vectype, \
    std::allocator< vectype > >;


#define EXPORT_STL_SET( dllmacro, settype ) \
  template class dllmacro std::allocator< settype >; \
  template struct dllmacro std::less< settype >; \
  template class dllmacro std::allocator< \
    std::_Tree_nod<std::_Tset_traits<settype,std::less<settype>, \
    std::allocator<settype>,false> > >; \
  template class dllmacro std::allocator<  \
    std::_Tree_ptr<std::_Tset_traits<settype,std::less<settype>, \
    std::allocator<settype>,false> > >; \
  template class dllmacro std::_Tree_ptr< \
    std::_Tset_traits<settype,std::less<settype>, \
    std::allocator<settype>,false> >; \
  template class dllmacro std::_Tree_nod< \
    std::_Tset_traits<settype,std::less<settype>, \
    std::allocator<settype>,false> >; \	
  template class dllmacro std::_Tree_val< \
    std::_Tset_traits<settype,std::less<settype>, \
    std::allocator<settype>,false> >; \	
  template class dllmacro std::set< settype, std::less< settype >, \
    std::allocator< settype > >; 


#define EXPORT_STL_MAP( dllmacro, mapkey, mapvalue ) \
  template struct dllmacro std::pair< mapkey,mapvalue >; \
  template class dllmacro std::allocator< \
    std::pair<const mapkey,mapvalue> >; \
  template struct dllmacro std::less< mapkey >; \
  template class dllmacro std::allocator< \
    std::_Tree_ptr<std::_Tmap_traits<mapkey,mapvalue,std::less<mapkey>, \
    std::allocator<std::pair<const mapkey,mapvalue> >,false> > >; \
  template class dllmacro std::allocator< \
    std::_Tree_nod<std::_Tmap_traits<mapkey,mapvalue,std::less<mapkey>, \
    std::allocator<std::pair<const mapkey,mapvalue> >,false> > >; \
  template class dllmacro std::_Tree_nod< \
    std::_Tmap_traits<mapkey,mapvalue,std::less<mapkey>, \
    std::allocator<std::pair<const mapkey,mapvalue> >,false> >; \
  template class dllmacro std::_Tree_ptr< \
    std::_Tmap_traits<mapkey,mapvalue,std::less<mapkey>, \
    std::allocator<std::pair<const mapkey,mapvalue> >,false> >; \
  template class dllmacro std::_Tree_val< \
    std::_Tmap_traits<mapkey,mapvalue,std::less<mapkey>, \
	std::allocator<std::pair<const mapkey,mapvalue> >,false> >; \
  template class dllmacro std::map< \
    mapkey, mapvalue, std::less< mapkey >, \
    std::allocator<std::pair<const mapkey,mapvalue> > >;
          

Yea. Ugly. Soooo ugly. All this just to get rid of some warnings. And I've got bad news....

Workaround 2 can cause link errors...

That's right. Fixing warning C4251 for templates can cause multiply-defined symbol errors. Say you have some DLL with an exported class containing a std::vector<int> that you have explicitly instantiated and exported as shown above. Your C4251 warnings are fixed. Nice! But then you want to use another DLL that has an exported class containing a std::vector<int> with the same explicit-instantiation workaround. Trouble...

When you try to link to both DLLs at the same time, you will get multiply-defined symbol errors! Both DLLs contain a specific class called std::vector<int>. They each have a copy of the symbols generated during template instantiation. The linker has no idea that the symbols are the same because the underlying code is the same, because it's in the compiled DLLs that it doesn't have access to. So it spits out link errors....

This is monumentally frustrating, in my opinion. As far as I can see the only real option here is to disable the warning and ignore it. You simply cannot use std::vector for simple types in classes exported from DLLs without at least generating warnings.

One thing that should work but doesn't is to make your vector private and not use it in inline functions. According to the documentation snippet shown above, this should be ok. It is not accesible to clients of the DLL. But the warning still comes up.

Another very unappealing option is to create a DLL where you explicitly instantiate all the STL classes you want ot use (vector, map, and so on) and wrap each of them, and then use the wrappers everywhere in your DLL interfaces. The wrappers are easy to write, just subclass the type you want (ie IntVector : public std::vector<int>) and do the explicit instantiation trick above the class definition. But you'll have to write constructors too, and you'll have to do this for each pair of stl container / datatype you want to use in your DLL interfaces. Seems like a lot of work to me....

Microsoft to the Rescue! (....well....sort of....)

Microsoft has (recently?) added a knowledge base article about this problem. Here is a link to the article:

How To Exporting STL Components Inside & Outside of a Class

(Yes. That is really the title. You would think someone checked at least the titles for grammar...)

Anyway, the gist of this article is that you cannot export anything except std::vector. I have not studied it extensively. It might deal with the link errors I mentioned before - but only for vectors. Yes, only for vectors. This KB article says that all other classes contain internal classes which cannot be exported. Which, I guess, means that those macros above only hide the warnings, but don't actually change the export behavior. Which might explain the link errors I have seen (they were all for vector!). Anyway, I'm still just hiding the warning with a pragma...

Conclusion

Disable the warning? You can do it locally and cleanly using pragma warning (push : XXXX) and (pop : XXXX) around your disable pragma, check the docs for pragma warning. You shouldn't just blindly disable the warning for anyone else who includes your header, because maybe they want that warning turned on. And if you are shipping a DLL to someone else, you probably want to be certain that all the non-template classes you want to export are marked as such. In this case disabling the warning might not be such a good idea...

I have no idea what the "right" behavior is here. It would be nice if we could say that the link error is wrong, but it's not. The linker has two different DLLs with the same symbols. It would be space madness for the linker to assume that it was the same code.

Warning C4251 isn't really wrong either. Your template instantiation is not exported. I suppose if you compiled the DLL with VC6 and the calling code with VC7 you might get some differences in the template instantiation name mangling or something that would cause link errors. Or even worse, the name mangling would be the same but the instantiation memory alignment would be slightly different or something. You could get crashes in that case.

Note: It seems that the above situation has occurred, between Visual Studio 7 and 8. Loren Meck writes " the predicted crashes do indeed happen when linking VC7 executables that use std::vector with VC8 executables that also use std::vector ". So, that's bad....very, very bad....

So the warning does have a purpose. But even with the explicit instantiation, I'm not certain the calling code is actually using it. This just seems to be one of the many C++ template inconsistencies that we just have to live with. Or switch to C#, I guess....

posted on 2011-05-18 14:51 Stone xin 閱讀(3543) 評論(0)  編輯 收藏 引用 所屬分類: STL&&BOOST

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            亚洲欧洲日产国码二区| 亚洲风情亚aⅴ在线发布| 亚洲欧美国产精品va在线观看| 女生裸体视频一区二区三区| 狼人社综合社区| 欧美国产日本韩| 亚洲精选中文字幕| 亚洲自拍电影| 久久久久久久久蜜桃| 免费在线播放第一区高清av| 欧美精品在线看| 国产麻豆精品久久一二三| 尤物99国产成人精品视频| 亚洲精品在线免费观看视频| 香港久久久电影| 久热精品视频在线观看| 亚洲六月丁香色婷婷综合久久| 亚洲无玛一区| 欧美成人情趣视频| 国产精品综合网站| 亚洲人www| 久久国产精品久久久久久| 亚洲高清毛片| 欧美一区二区三区视频在线观看| 国产精品一二三| 亚洲在线观看免费| 久久久久久久久蜜桃| 欧美猛交免费看| 国产欧美午夜| 一区二区三区国产精品| 久久精彩视频| 一区二区三区四区精品| 老色鬼精品视频在线观看播放| 欧美日韩在线高清| 亚洲国产高清在线| 久久久99久久精品女同性| 亚洲人体一区| 久久亚洲精选| 国产偷国产偷亚洲高清97cao| 一区二区毛片| 亚洲国产高清视频| 久久久天天操| 国产一区二区丝袜高跟鞋图片| 亚洲色在线视频| 亚洲动漫精品| 久久一区二区三区国产精品 | 久久久久se| 一区二区三区国产在线| 欧美大片在线看免费观看| 狠狠色伊人亚洲综合网站色| 欧美怡红院视频一区二区三区| 中文日韩在线| 国产精品麻豆va在线播放| 一区二区三区欧美| 亚洲精品一线二线三线无人区| 欧美国产日韩在线| 91久久在线视频| 欧美激情精品久久久久久免费印度 | 欧美一区三区二区在线观看| 国产精品亚洲аv天堂网| 欧美专区在线观看| 亚洲一区在线免费| 国产偷久久久精品专区| 久久久一区二区| 久久精品国产一区二区三区免费看 | 午夜精品福利电影| 国产日韩在线播放| 久久久久久综合| 久久亚洲午夜电影| 亚洲精品中文字| 亚洲欧洲午夜| 欧美三级电影大全| 久久国产精品久久久久久| 欧美一乱一性一交一视频| 亚洲欧美国产视频| 国外精品视频| 久久久国产精品亚洲一区| 欧美伊人久久| 亚洲国产精品视频一区| 亚洲国产日韩欧美综合久久| 欧美精品一卡| 久久国产精品久久久久久久久久| 久久精品一区二区三区不卡| 亚洲精品视频在线播放| 一区二区三区高清视频在线观看| 国产精品一二三四区| 裸体丰满少妇做受久久99精品 | 9久re热视频在线精品| 国产精品久久久一区麻豆最新章节 | 欧美一区在线直播| 乱人伦精品视频在线观看| 亚洲一二三区精品| 久久福利精品| 亚洲视频网站在线观看| 久久精品夜色噜噜亚洲aⅴ| 99国产精品视频免费观看一公开 | 日韩视频免费大全中文字幕| 国产日韩一区二区三区在线| 亚洲欧洲综合另类| 国产性天天综合网| 亚洲美女尤物影院| 在线成人激情黄色| 亚洲制服欧美中文字幕中文字幕| 亚洲大片av| 欧美影片第一页| 亚洲综合精品一区二区| 玖玖综合伊人| 久久精品国产99国产精品| 欧美日韩亚洲一区在线观看| 欧美成人资源| 伊人狠狠色丁香综合尤物| av成人国产| 亚洲人成人一区二区在线观看| 欧美一区二区黄| 先锋影音网一区二区| 欧美日韩一区在线观看视频| 欧美电影免费观看网站| 国内外成人免费激情在线视频 | 欧美激情国产日韩精品一区18| 国产精品亚洲一区| 亚洲精品资源| 一二三四社区欧美黄| 久久一区亚洲| 免费观看国产成人| 一色屋精品视频在线观看网站| 亚洲免费在线播放| 亚洲欧美综合国产精品一区| 欧美日韩一区在线观看视频| 亚洲精品三级| 中日韩男男gay无套| 欧美日韩三区四区| 亚洲免费成人av电影| 久久精品最新地址| 亚洲欧美日韩直播| 国产精品另类一区| 亚洲主播在线| 久久精品动漫| 国内自拍一区| 久久亚洲视频| 欧美激情一区二区三区在线视频观看 | 欧美一区二区三区免费视频 | 亚洲图片在区色| 香蕉久久夜色精品国产| 国产精品一二三四区| 亚洲自拍电影| 久久久国际精品| 在线视频成人| 欧美 日韩 国产在线| 亚洲精品日韩在线| 午夜精品一区二区三区在线视| 国产精品视频yy9299一区| 亚洲欧美另类国产| 免费不卡中文字幕视频| 日韩视频亚洲视频| 国产精品久久久久久久久久三级| 午夜一区二区三区不卡视频| 久久婷婷综合激情| 亚洲激情自拍| 欧美视频二区| 欧美在线看片| 91久久精品国产91久久| 亚洲欧美久久久久一区二区三区| 国产视频一区二区在线观看| 美女日韩在线中文字幕| 亚洲精品字幕| 久久久精品一区二区三区| 亚洲国产欧美不卡在线观看| 欧美日一区二区三区在线观看国产免| 亚洲欧美日韩精品久久奇米色影视 | 国产精品亚洲第一区在线暖暖韩国| 欧美与欧洲交xxxx免费观看| 亚洲电影一级黄| 欧美一级淫片aaaaaaa视频| 在线观看亚洲精品视频| 欧美日韩中文字幕日韩欧美| 久久精品中文| 亚洲一区二区高清| 最新成人av网站| 久久久一本精品99久久精品66| 在线性视频日韩欧美| 在线观看一区| 国产乱理伦片在线观看夜一区| 欧美电影免费观看网站| 欧美亚洲在线| 夜夜嗨av色综合久久久综合网| 你懂的国产精品永久在线| 午夜精品三级视频福利| 日韩小视频在线观看| 有码中文亚洲精品| 国产麻豆精品久久一二三| 欧美激情视频网站| 久久久噜噜噜久久中文字幕色伊伊| 亚洲网站视频| 日韩亚洲不卡在线| 一区二区欧美日韩| 亚洲欧美在线网| 亚洲精品国产精品国自产观看浪潮| 国产欧美日韩另类视频免费观看| 欧美日本中文| 欧美高清在线|