Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 760135
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T15:40:51+00:00 2026-05-14T15:40:51+00:00

I have: class A { public: B toCPD() const; And: template<typename T> class Ev

  • 0

I have:

class A {
public:
    B           toCPD() const;

And:

template<typename T>
class Ev {
public:
    typedef result_of(T::toCPD()) D;

After instantiating Ev<A>, the compiler says:

meta.h:12: error: ‘T::toCPD’ is not a type

neither decltype nor typeof work either.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T15:40:51+00:00Added an answer on May 14, 2026 at 3:40 pm

    Since whatever result you obtain depends on the template parameter, typedef typename is necessary.

    decltype is a standard C++11 feature. It is an “operator” which takes an expression and returns a type.

    typedef typename decltype( T().toCPD() ) D; // can't use T:: as it's nonstatic
    

    If T() isn’t a valid (T not default-constructible) you will want declval which is a function that takes a type and returns a meaningless, invalid value of that type. declval can only be used in unevaluated contexts such as decltype.

    typedef typename decltype( std::declval<T>().toCPD() ) D;
    

    Before C++11, decltype was a non-standard extension by Microsoft’s MSVC compiler. Its behavior might have been changed slightly by standardization.


    typeof is GCC’s equivalent pre-C++11 extension like decltype, which was also cloned in other compilers. Here is its documentation from GCC. That page provides no comparison between the features, but it notes that typeof must be called __typeof__ when using a standard mode (-std=c++YY, which you should always do), and it is available in C as well as C++.

    For the sake of C compatibility, __typeof__ will not resolve a reference type from a glvalue expression. So, it’s really only suitable for C. This probably explains why the C++ feature didn’t inherit the more self-explanatory name: GNU was unwilling to sacrifice backward compatibility, whereas Microsoft cares less about C and perhaps needed fewer changes.


    result_of is a C++11 metafunction (previously standardized in the ISO TR1 library from 2006). It is a template which takes a callable type (such as a function int(void), function pointer int(*)(void), functor class implementing operator(), or pointer-to-member-function &T::toCPD) and an argument type-list for that type, and provides the return type if the call would work.

    To use result_of with a pointer to member function, you must include the parent object type in the argument list as a surrogate for this.

    typedef typename std::result_of< decltype( & T::toCPD ) ( T * ) >::type D;
    

    This is very brittle, though, because &T::toCPD cannot be resolved if there’s any overloading, such as a non-const version. This is true despite the fact that T * or T const * must be explicitly written out! In most cases, you’re better off with decltype and declval.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have class Fred { public: void inspect() const {}; void modify(){}; }; int
I have class ObjectController { public: ... template<template<class> class Action, class T> Action<T> *
I have: class XILightSource { public: virtual XVec2 position() const = 0; }; class
I have class with back reference: public class Employee : Entity { private string
I have class A: public B { ...} vector<A*> v; I want to do
i have a class: public class Vars { public static final String NAME =
I have class with collection as below public class MyClass:IXmlSerializable { int vesrion; private
I have a class: public class LevelInfo { public int Id { get; set;
i have this class public class Image { public string url { get; set;
I have class that looks like this: class A { public: class variables_map vm

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.