CPP специализированная функция-член - PullRequest
3 голосов
/ 26 июля 2010

Я пытаюсь специализировать только функцию-член момент () (не класс дырки) следующим образом:

template<class Derived, class T>
class AbstractWavelet {
public:
  [...]

  template<bool useCache>
  const typename T::scalar moment(const int i, const int j) const {
    return abstractWaveletSpecialization<Derived, T, useCache>::moment(static_cast<const Derived*>(this), i, j);
  }
  template<bool useCache>
  friend const typename T::scalar abstractWaveletSpecialization<Derived, T, useCache>::moment(const Derived* const that, const int i, const int j);

protected:
  // returns the jth moment of the ith scaling function
  template<bool useCache>
  inline const typename T::scalar momentImpl(const int j, const int i) const {
    [...]
  } // momentImpl
};

Фактическая специализация происходит в дополнительной абстрактной структуре abstractWaveletSpecialization:

template<class Derived, class T, bool useCache>
struct abstractWaveletSpecialization {
  inline static const typename T::scalar moment(const Derived* const that, const int i, const int j) {
    return that->momentImpl<useCache>(i,j);
  }
};


template<class Derived, class T> 
struct abstractWaveletSpecialization<Derived, T, true> {

  typedef const std::pair<const int, const int> momentCacheKey;
  typedef std::map<momentCacheKey,
               const typename T::scalar> momentCacheType;
  static momentCacheType momentCache;


  inline static const typename T::scalar moment(const Derived* const that, const int i, const int j) {
    momentCacheKey cacheKey(i,j);
    typename momentCacheType::iterator idx = momentCache.find(cacheKey);

    if (idx == momentCache.end())
      return that->momentImpl<true>(i, j);  // COMPILE ERROR HERE
    else
      return momentCache[cacheKey];
  }
};

Проблема заключается в том, что я не могу вызвать momentImpl () в специализированной структуре abstractWaveletSpecialization:

error: invalid operands of types ‘<unresolved overloaded function type>’ and ‘bool’ to binary ‘operator<’

Но компилятор не жалуется на вызов momentImpl в неспециализированной структуре abstractWaveletSpecialization.

Мой подход запрещен в C ++?Или есть какой-нибудь способ заставить это работать?

1 Ответ

2 голосов
/ 26 июля 2010

Можете ли вы попробовать that->template momentImpl<true>(i, j);, пожалуйста?Это способ сказать компилятору: «Эй, после -> шаблонный вызов»

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...