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

數據加載中……

去除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>
            国产精品久久久久一区二区三区| 久久亚洲一区二区| 国产精品v日韩精品| 亚洲尤物在线视频观看| 亚洲新中文字幕| 国产视频自拍一区| 久久久久青草大香线综合精品| 欧美自拍偷拍| 亚洲区第一页| 正在播放亚洲| 欧美亚洲一级| 亚洲精品一区二区在线| 一区二区三区久久| 国产一区在线看| 亚洲国产欧美日韩精品| 国产精品高清在线| 美女黄毛**国产精品啪啪| 欧美成熟视频| 久久国产日本精品| 欧美成人有码| 久久精品视频免费播放| 欧美国产日本在线| 欧美中文字幕在线播放| 欧美大片18| 久久久最新网址| 欧美天天综合网| 男人的天堂亚洲| 国产精品一区亚洲| 亚洲电影免费观看高清完整版在线观看 | 欧美va天堂va视频va在线| 欧美日本韩国一区二区三区| 久久超碰97中文字幕| 欧美69wwwcom| 久久久美女艺术照精彩视频福利播放 | 欧美一级专区| 亚洲私人影院在线观看| 老牛国产精品一区的观看方式| 亚洲综合视频1区| 欧美激情精品| 免费在线观看一区二区| 国产啪精品视频| 亚洲伦理一区| 91久久精品日日躁夜夜躁欧美| 性色一区二区| 欧美一级理论片| 欧美性大战久久久久久久| 亚洲黄色性网站| 在线观看视频日韩| 久久精品国产亚洲精品| 欧美一级视频精品观看| 欧美午夜激情在线| 日韩视频在线一区二区| 日韩视频欧美视频| 欧美福利视频一区| 欧美国产日本在线| 亚洲国产精品久久久久秋霞不卡| 欧美一区二区国产| 久久精品盗摄| 国产亚洲欧洲一区高清在线观看| 亚洲欧美视频一区| 久久国产精品黑丝| 国产欧美 在线欧美| 亚洲欧美精品在线| 久久精品首页| 韩国一区二区三区在线观看 | 亚洲国产一区二区三区青草影视| 在线观看的日韩av| 欧美成人免费播放| 亚洲高清视频在线| 欧美激情a∨在线视频播放| 亚洲国产电影| 亚洲图片欧洲图片av| 欧美日韩一区综合| 亚洲午夜小视频| 欧美在线地址| 在线看日韩av| 欧美激情一区二区三区在线| 一区二区日本视频| 欧美一区二区三区成人| 国产一区深夜福利| 另类酷文…触手系列精品集v1小说| 欧美mv日韩mv亚洲| 一区二区三区欧美亚洲| 国产精品热久久久久夜色精品三区| 亚洲欧美日韩精品久久久久| 久久只精品国产| 亚洲精品美女| 国产精品视频不卡| 久久男人av资源网站| 亚洲日本电影| 欧美一区精品| 亚洲欧洲一级| 国产精品入口日韩视频大尺度| 欧美自拍丝袜亚洲| 亚洲日本中文字幕| 久久精品亚洲| 一本色道久久综合亚洲二区三区| 国产欧美精品久久| 欧美jjzz| 久久国产欧美精品| 99国产一区| 裸体素人女欧美日韩| 亚洲综合999| 亚洲国产精品成人一区二区 | 国产精品一区毛片| 欧美国产精品日韩| 欧美在线亚洲| 99国产欧美久久久精品| 欧美成人在线免费观看| 亚洲欧美久久久久一区二区三区| 国产综合18久久久久久| 欧美特黄一级大片| 免费久久精品视频| 久久成人18免费网站| 夜夜嗨av一区二区三区四季av| 蜜桃av一区二区三区| 欧美伊久线香蕉线新在线| 亚洲精品欧美在线| 一区二区在线观看视频| 欧美亚洲成人精品| 欧美黄色小视频| 久久综合网hezyo| 香蕉乱码成人久久天堂爱免费| 亚洲免费成人av| 亚洲国产天堂久久综合| 免费在线看一区| 久久米奇亚洲| 久久精品国产2020观看福利| 午夜国产不卡在线观看视频| 一区二区三区免费观看| 99精品视频网| 亚洲国产婷婷香蕉久久久久久| 国产一区自拍视频| 国产一区二区三区在线观看网站| 国产精品久久久久久模特| 欧美精品亚洲精品| 欧美区高清在线| 欧美绝品在线观看成人午夜影视 | 久久亚洲一区二区三区四区| 午夜精品电影| 午夜视黄欧洲亚洲| 午夜精品久久久久久久99热浪潮 | 一区二区三区视频观看| 99国产精品久久久久老师| 日韩亚洲不卡在线| 99国产一区| 亚洲一区二区免费看| 亚洲在线观看视频网站| 午夜精品在线观看| 久久成人人人人精品欧| 久久精品免费看| 裸体一区二区| 亚洲另类在线一区| 亚洲午夜激情| 欧美在线三区| 美女黄毛**国产精品啪啪 | 亚洲免费影视| 久久精品一本久久99精品| 久久亚洲私人国产精品va媚药| 美日韩在线观看| 欧美日韩精品免费| 国产欧美日韩一区二区三区在线观看 | 国产精品国产成人国产三级| 国产欧美 在线欧美| 亚洲第一主播视频| 亚洲午夜免费视频| 久久精品免费电影| 亚洲国产人成综合网站| 亚洲午夜女主播在线直播| 久久精品夜色噜噜亚洲a∨| 欧美成人dvd在线视频| 欧美日韩综合精品| 国产一区二区三区黄| 日韩一级欧洲| 久久国内精品视频| 欧美激情一区二区三区在线| 亚洲一区二区三| 裸体女人亚洲精品一区| 国产精品久久久久一区| 亚洲国产精品成人综合| 午夜精品久久久久久久久久久久 | 日韩午夜av在线| 久久精品青青大伊人av| 国产亚洲精品成人av久久ww| 在线播放亚洲| 亚洲欧美日韩精品久久| 欧美激情精品久久久久久| 亚洲一区二区三区精品视频| 欧美成人69av| 狠狠综合久久| 亚洲欧美中日韩| 91久久久亚洲精品| 久久久久久久久伊人| 国产精品多人| 亚洲免费观看在线观看| 老司机免费视频久久| 亚洲综合首页| 欧美视频导航| 99亚洲视频| 欧美激情第五页|