gpt4 book ai didi

c++ - 为什么我不能在函数内部声明模板化类型别名?

转载 作者:可可西里 更新时间:2023-11-01 18:37:37 25 4
gpt4 key购买 nike

<分区>

为什么我不能在函数内部声明模板化类型别名?

#include <vector>

int main(){

//type alias deceleration:
template <typename T>
using type = std::vector<T>;

//type instantiation:
type<int> t;

}

error: a template declaration cannot appear at block scope

为什么我们被迫将这些声明放在 block 作用域之外?

#include <vector>

//type alias deceleration:
template <typename T>
using type = std::vector<T>;

int main(){

//type instantiation:
type<int> t;
}

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com