Template

2024-09-14

最后编辑于:2024-09-15

    #Cpp
    #template

std::decay<>

std::decay<T>

会得到T的退化类型

| T& | T | | --- | --- | | T[] | T* |

std::common_type<>

std::common_type<...>

返回公共类型,注意其内部调用std::decay<>对类型进行了退化