Unicorn with delicious cookie
Nous utilisons des cookies pour améliorer votre expérience de navigation. En savoir plus
Accepter
to the top
>
>
>
Std::common_type

std::common_type

10 Nov 2021

Definition

std::common_type is a trait from the standard library. This trait allows you to pass an arbitrary number of types, processes them, and outputs their common type. std::common_type became first available in the C++11 standard. When obtaining a common type, std::common_type relies upon the conditional operator and does some conversions we'll review below.

Possible implementation

namespace std
{
template <typename ...>
struct common_type;                                      // (1)

template <typename ...Ts>
using common_type_t = typename common_type<Ts...>::type;

template <>
struct common_type<>                                     // (2)
{
};

template <class T>
struct common_type<T>                                    // (3)
{
  using type = std::decay_t<T>;
};

template <class T, class U>
struct common_type<T, U>                                 // (4)
{
  using type = decay_t<decltype( true ? declval< std::decay_t<T> >()
                                      : declval< std::decay_t<U> >() ) >;
};

template <class T, class U, class ...V>
struct common_type<T, U, V...>                           // (5)
{
  using type = typename common_type<typename common_type<T, U>::type,
                                    V...>::type;
};
}

It's worth mentioning that common_type is implemented in the standard library in a similar way. Now let's examine the code above and see what happens there:

  • The primary variadic class template is declared.
  • For an empty list of template arguments, we declare the explicit template specialization that does not contain anything.
  • For one template argument, we declare the partial template specialization that contains this type after the std::decay trait is performed. This trait removes CV-qualifiers, links, adds pointers for functions (function-to-pointer conversion), and converts arrays to pointers (array-to-pointer conversion).
  • For two template arguments, we declare the partial specialization that infers the resulting type based on the type inference rules of the conditional operator, applying the std::decay trait to the passed arguments beforehand.
  • For three or more template arguments, we declare the partial specialization that first retrieves the common type for the first two arguments. It uses the specialization for 2 types to do this. Then it instantiates itself recursively, passing the common type for the first pair of types and the rest of the template parameter pack as template arguments. Overall, common_type<a, b, c, d> is equivalent to common_type<common_type<common_type<a, b>, c>, d>. See an example on C++ Insights.

Helpful links

Popular related articles

S'abonner

Comments (0)

close comment form
close form

Remplissez le formulaire ci‑dessous en 2 étapes simples :

Vos coordonnées :

Étape 1
Félicitations ! Voici votre code promo !

Type de licence souhaité :

Étape 2
Team license
Enterprise licence
** En cliquant sur ce bouton, vous déclarez accepter notre politique de confidentialité
close form
Demandez des tarifs
Nouvelle licence
Renouvellement de licence
--Sélectionnez la devise--
USD
EUR
* En cliquant sur ce bouton, vous déclarez accepter notre politique de confidentialité

close form
La licence PVS‑Studio gratuit pour les spécialistes Microsoft MVP
close form
Pour obtenir la licence de votre projet open source, s’il vous plait rempliez ce formulaire
* En cliquant sur ce bouton, vous déclarez accepter notre politique de confidentialité

close form
I want to join the test
* En cliquant sur ce bouton, vous déclarez accepter notre politique de confidentialité

close form
check circle
Votre message a été envoyé.

Nous vous répondrons à


Si l'e-mail n'apparaît pas dans votre boîte de réception, recherchez-le dans l'un des dossiers suivants:

  • Promotion
  • Notifications
  • Spam