0

私の問題は、別のテンプレート関数へのポインタを取るテンプレート関数 test を呼び出そうとすることです。関数へのポインターをテンプレート化することはできないため、そのような typedef ポインターを構造体にラップすることでそれを行いました (「テンプレートの typedefs - What's your work around?」を参照してください)。大丈夫です。テンプレート関数をポインターで呼び出すことはできますが、問題は、このポインターを引数として取る関数を呼び出せないことです。VS2010 のエラーは次のとおりです。

c:\projects\sort\sort\sort.cpp(114): エラー C2059: 構文エラー: '}' c:\projects\sort\sort\sort.cpp(124): 関数テンプレートのインスタンス化への参照を参照してください 'void テスト(void (__cdecl *)(std::vector<_Ty> &))' は [ _Ty=int ] でコンパイルされています

ビルドに失敗しました。

_Ty は int でOKですよね?

#include "stdafx.h"
#include <vector>
#include <iterator>//for ostream_iterator
#include <algorithm>//for copy
#include <iostream>//for cout
#include <map>
#include <boost/timer/timer.hpp>
#include <boost/random.hpp>
#include <functional>

template <typename T>
void insert_sort(typename std::vector<T>& v){ // O(n^2)
    for(std::vector<T>::iterator it=v.begin();it!=v.end();it++){
        std::vector<T>::iterator it2=it; // [0,...,i-1] has been sorted already
        T temp = *it2;
        while(it2!=v.begin() && *(it2-1)>temp){
            *(it2)=*(it2-1);
            it2--;
        }
        *(it2)=temp;
    }
}
void f(int i){std::cout<<i<<" ";}

template<typename T>
struct sort_struct{
    typedef void (*func_sort)(std::vector<T>& );
    typedef std::map<int,T> mymap;
};

template<typename T>
double sortTime(std::vector<T>& v, typename sort_struct<T>::func_sort f){
    boost::timer t; // start timing
    f(v);
    return t.elapsed();
}

template<typename T>
void test(typename sort_struct<T>::func_sort f){
    int i=100;
    while(i<0xFF){
        boost::mt19937 marsenneTwister;
        boost::uniform_int<> unigen;
        boost::variate_generator<boost::mt19937, boost::uniform_int<> > 
            gen(marsenneTwister, unigen);
        std::vector<int> randVec(i);
        std::random_shuffle(randVec.begin(), randVec.end(), gen);
        double elapsed = sortTime(randVec,f);
        std::cout<<i<<","<<elapsed<<std::endl;
            i+=100;
    }
}


int _tmain(int argc, _TCHAR* argv[])
{
    std::vector<int> vi(2);
    sort_struct<int>::func_sort isort_int=insert_sort<int>;
    (*isort_int)(vi); // this is OK

    // how to instantiate and call test<int> ?
    test<int>(isort_int); // error
    //...
 }
4

1 に答える 1

2

この行が問題です:

while(i<0xFF)do{

正しい構文は次のとおりです。

while(i<0xFF){

.

于 2013-01-27T12:05:01.183 に答える