3

Visual Studioで正常にコンパイルされるコードを移植しようとしていますが、Linuxではgcc4.6がこれをスローします。

PieMenu.cpp: In member function ‘void PieMenu::AddButtons()’:
error: no matching function for call to ‘std::basic_ifstream<char>::open(const wchar_t*)’

PieMenu.cpp:110:44: note: candidate is:
/usr/include/c++/4.6/fstream:531:7: note: void std::basic_ifstream<_CharT, _Traits>::open(const char*, std::ios_base::openmode) [with _CharT = char, _Traits = std::char_traits<char>, std::ios_base::openmode = std::_Ios_Openmode]
/usr/include/c++/4.6/fstream:531:7: note:   no known conversion for argument 1 from ‘const wchar_t*’ to ‘const char*’

これは.cppの関連部分です。

void PieMenu::AddButtons()
{
        CString slash = CUtils::Slash();

        CString texturePath,namelistPath=m_pluginPath;
#ifndef linux
        texturePath =  L".." + slash + L".." + slash; // On windows plugin is located two levels below...
        namelistPath += texturePath;
#endif
        texturePath += L"data" +slash+ m_folderpath + slash + L"textures" + slash;
        namelistPath += L"data" +slash+ m_folderpath + slash + m_folderpath + L".txt";


        for(int i=0;i<m_buttonCount;i++)
        {
            CString bPath = texturePath + m_folderpath + CString(i);
            m_buttons.push_back(ToolButton());
            m_buttons[i].Setup( bPath.GetWideString(), i);
        }

        string l_str;
        ifstream infile;

これはコードの110行目です。

        infile.open (namelistPath.GetWideString());

        int k=0;
        while(!infile.eof() && k < m_buttonCount) // To get you all the lines.
        {
            std::getline(infile,l_str); // Saves the line in STRING.
            m_buttons[k].SetName(CString(l_str.data()));
            k++;
        }
        infile.close();
}

すべてのヒントと助けに感謝します!

4

1 に答える 1

7

C ++標準ライブラリはopen()、ストリームがワイド文字用であるかどうかに関係なく、ファイル名をワイド文字として受け取るファイルストリーム用の関数を定義していません。つまり、ファイル名として使用するワイド文字列がある場合は、それを適切なcharsのシーケンスに変換する必要があります。希望する方法でこれを行う方法は、ニーズによって異なります。

見た目からすると、Windowsはワイド文字列を使用してファイルを開くメソッドを実装し、標準のC ++ライブラリは、ワイド文字列を使用して呼び出すopen()(または呼び出すだけのファイルストリームのコンストラクター)ことを可能にする拡張機能をサポートしopen()ます。

于 2012-10-06T15:02:20.727 に答える