0

クラス streamTest をエクスポートする dll を考えてみましょう。次のコード:

class  streamTest
{
public:
    TEST_API streamTest();
    TEST_API ~streamTest();

private:
    std::map<int,std::ofstream> streamMap;
};

エラーなしでコンパイルされ、dll にリンクするアプリケーションから正常に実行されますが、コードは次のとおりです。

class TEST_API streamTest
{
public:
    streamTest();
    streamTest();

private:
    std::map<int,std::ofstream> streamMap;
};

警告を出してからエラーを出します:

1>warning C4251: 'streamTest::streamMap' : class 'std::map<_Kty,_Ty>' needs to have dll-interface to be used by clients of class 'streamTest'
1>          with
1>          [
1>              _Kty=int,
1>              _Ty=std::ofstream
1>          ]
1>c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\fstream(1116): error C2248: 'std::basic_ios<_Elem,_Traits>::basic_ios' : cannot access private member declared in class 'std::basic_ios<_Elem,_Traits>'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>
1>          ]
1>          c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\ios(176) : see declaration of 'std::basic_ios<_Elem,_Traits>::basic_ios'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>
1>          ]
1>          This diagnostic occurred in the compiler generated function 'std::basic_ofstream<_Elem,_Traits>::basic_ofstream(const std::basic_ofstream<_Elem,_Traits> &)'
1>          with
1>          [
1>              _Elem=char,
1>              _Traits=std::char_traits<char>
1>          ]

コンパイルできないのはなぜですか? std::map の dll インターフェイスを提供するにはどうすればよいですか? 以前は、dll で std::ofstream 以外のオブジェクトに std::map を問題なく使用していました。何が足りないのか教えてください...

PS TEST_API は単に

#ifdef TEST_EXPORTS
#define TEST_API __declspec(dllexport)
#else
#define TEST_API __declspec(dllimport)
#endif
4

1 に答える 1

1

ofstreamコピー不可です。クラスをエクスポートするmap<int,std::ofstream>と、値をコピーしようとするメソッドを含め、すべてのメソッドが強制的にインスタンス化されます。

C++11 機能をサポートしていない VC10 を使用しています。そこに保存できるとは思いません。エクスポートofstreamするmapか、エクスポートしないかです。

于 2013-07-19T21:20:18.647 に答える