-2

プログラムをコンパイルするたびに、このエラーが発生します。

c:\mingw\bin\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algo.h:5394:5: note: template<class _RAIter> void std::sort(_RAIter, _RAIter)
c:\mingw\bin\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algo.h:5430:5: note: void std::sort(_RAIter, _RAIter, _Compare) [with _RAIter = __gnu_cxx::__normal_iterator<PointTwoD*, std::vector<PointTwoD> >, _Compare = bool (MissionPlan::*)(PointTwoD&, PointTwoD&)]
c:\mingw\bin\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algo.h:5430:5: note:   no known conversion for argument 3 from '<unresolved overloaded function type>' to 'bool (MissionPlan::*)(PointTwoD&, PointTwoD&)'

以下は実際に私の.cppファイルです..

bool MissionPlan::sortByCiv(const PointTwoD &t1, const PointTwoD &t2)
{
    return t1.locationdata.getCivIndex() < t2.locationdata.getCivIndex();
}

void MissionPlan::topfives()
{   

    topfive.assign( point1.begin(), point1.end() ); 

    sort(topfive.begin(), topfive.end(), sortByCiv);

    for(int i=0; i < 5; i++)
    {
        topfive.at(i).displayPointdata();
    }

}

ミッションプラン.h

class MissionPlan
{

    private:
        int sizeofarray;
        int sizeofarray2;
        int xcordi;
        int ycordi;
        LocationData locationdata;
        PointTwoD pointtwoD;
        //MissionPlan missionplan;


    public:
        MissionPlan();
        MissionPlan(int, int, float);

        int getx();
        int gety();
        float civnum;
        float getciv();

        void stats();
        void storedata(int, int, float);
        void test();
        void displayall();
        void compute();
        void topfives();
        static bool sortByCiv(const PointTwoD &t1, const PointTwoD &t2);

};

コードからこの行「sort(topfive.begin(), topfive.end(), sortByCiv);」を削除すると、プログラムはスムーズにコンパイルおよび実行されます。
そのコード行に問題がありますか、またはそれに影響を与えている他のものがありますか?


これは、sortByCiv statc を作成し、関数 para を const に変更した後にコンパイルを開始したときに取得されるエラー メッセージです。

In file included from c:\mingw\bin\../lib/gcc/mingw32/4.6.2/include/c++/algorithm:63:0,
                 from ..\src\/MissionPlan.h:9,
                 from ..\src\MissionPlanImp.cpp:3:
c:\mingw\bin\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algo.h: In function '_RandomAccessIterator std::__unguarded_partition(_RandomAccessIterator, _RandomAccessIterator, const _Tp&, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<PointTwoD*, std::vector<PointTwoD> >, _Tp = PointTwoD, _Compare = bool (*)(PointTwoD&, PointTwoD&)]':
c:\mingw\bin\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algo.h:2265:78:   instantiated from '_RandomAccessIterator std::__unguarded_partition_pivot(_RandomAccessIterator, _RandomAccessIterator, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<PointTwoD*, std::vector<PointTwoD> >, _Compare = bool (*)(PointTwoD&, PointTwoD&)]'
c:\mingw\bin\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algo.h:2306:62:   instantiated from 'void std::__introsort_loop(_RandomAccessIterator, _RandomAccessIterator, _Size, _Compare) [with _RandomAccessIterator = __gnu_cxx::__normal_iterator<PointTwoD*, std::vector<PointTwoD> >, _Size = int, _Compare = bool (*)(PointTwoD&, PointTwoD&)]'
c:\mingw\bin\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algo.h:5445:4:   instantiated from 'void std::sort(_RAIter, _RAIter, _Compare) [with _RAIter = __gnu_cxx::__normal_iterator<PointTwoD*, std::vector<PointTwoD> >, _Compare = bool (*)(PointTwoD&, PointTwoD&)]'
..\src\MissionPlanImp.cpp:140:48:   instantiated from here
c:\mingw\bin\../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algo.h:2233:4: error: invalid initialization of reference of type 'PointTwoD&' from expression of type 'const PointTwoD'

c:\mingw\bin../lib/gcc/mingw32/4.6.2/include/c++/bits/stl_algo.h:2236:4: エラー: タイプ 'const の式からのタイプ 'PointTwoD&' の参照の無効な初期化PointTwoD'

最終的に、プログラムはコマンドプロンプトで実行できるようになりましたが、次のエラーメッセージで終了します..

"terminate called after throwing an instance of 'std::out_of_range' what(): vecotr::_M_range_check"

みんなありがとう、私はそれを立ち上げて実行しました、ありがとう、そしてすべてのあなたの助けに感謝します..

4

2 に答える 2

5

ここでの問題sortByCivは、メンバー関数であることです。これは、レシーバー オブジェクトに対してのみ呼び出すことができます (つまりmyObject.sortByCiv(...)、対sortByCiv(...)std::sort関数は、2 つの引数を持つフリー関数として呼び出すことができる関数をパラメーターとして提供することを期待しています。価値。

これを修正するには、make sortByCiv static. これにより、レシーバー オブジェクトがなくなり、問題が解決するはずです。

お役に立てれば!

于 2013-10-25T20:33:14.093 に答える
0

sortByCiv はメンバー関数であり、特別な処理が必要です。たとえば、暗黙的な (3 番目の) this パラメーターがあるため、関数ポインター型にキャストすることはできません。

あなたの場合、その必要はありません。このパラメーターを使用しないため、 sortByCiv(..) をクラス宣言から移動する (または静的にする) だけです。

bool sortByCiv(const PointTwoD &t1, const PointTwoD &t2)
{
    return t1.locationdata.getCivIndex() < t2.locationdata.getCivIndex();
}
于 2013-10-25T20:36:11.130 に答える