Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can template parameter deduction be used in class data members?

Tags:

c++

gcc

c++17

C++17 introduces template argument deduction.

With gcc-7.2, I can use it easily in a function:

int test() {
  std::pair d(0, 0.0);
}

I was expecting this same syntax to work in class non-static data members, like:

class Test {
  std::pair d_{0, 0.0};
};

but this causes gcc error: invalid use of template-name ... without an argument list, with --std=c++17 passed.

I tried a few other combinations, but none seems to work.

Is this the intended behavior by the standard, or is this a case of incomplete support by the compiler? I can't find any explicit reference to class data members in the standard.

My use case is of course much more complex, having this syntax would be extremely convenient (think functions being passed and stored).

like image 241
rabexc Avatar asked Nov 20 '17 18:11

rabexc


People also ask

What is template argument deduction?

Template argument deduction is used when selecting user-defined conversion function template arguments. A is the type that is required as the result of the conversion. P is the return type of the conversion function template.

Which is correct example of template parameters?

For example, given a specialization Stack<int>, “int” is a template argument. Instantiation: This is when the compiler generates a regular class, method, or function by substituting each of the template's parameters with a concrete type.

What is the role of parameter in a template?

A template parameter is a special kind of parameter that can be used to pass a type as argument: just like regular function parameters can be used to pass values to a function, template parameters allow to pass also types to a function.

How do you use template arguments in C++?

A template argument for a template template parameter is the name of a class template. When the compiler tries to find a template to match the template template argument, it only considers primary class templates. (A primary template is the template that is being specialized.)


Video Answer


1 Answers

Is this the intended behavior by the standard, or is this a case of incomplete support by the compiler?

Yes, this is intended behavior. [dcl.type.class.deduct] reads:

If a placeholder for a deduced class type appears as a decl-specifier in the decl-specifier-seq of an initializing declaration ([dcl.init]) of a variable, [...]

A placeholder for a deduced class type can also be used in the type-specifier-seq in the new-type-id or type-id of a new-expression, or as the simple-type-specifier in an explicit type conversion (functional notation). A placeholder for a deduced class type shall not appear in any other context.

A non-static data member is not a variable, and we're in none of the other situations.

Note that the same principle is true for non-static data members attempting to be declared with auto:

struct X {
    auto y = 0; // error
};

The default member initializer is just that - a default initializer. What if you provided a constructor that initialized the member with expression(s) of different types?

like image 158
Barry Avatar answered Sep 24 '22 19:09

Barry