gpt4 book ai didi

c++模板预期的主表达式之前

转载 作者:行者123 更新时间:2023-11-28 03:07:11 24 4
gpt4 key购买 nike

<分区>

我是模板的新手,在这里的论坛上找不到我的问题的答案,也许我只是不知道要搜索什么。

我的代码:

template<class T>
vector<T> properDivisors(T input) {
vector<T>retVal;
for(T d = T()+1;d<input;d++) {
if((double)input/(double)d == input/d)
retVal.push_back(d);
}
return retVal;
}

template<class T>
T sumTypeOf(T input) {
vector<T>divisors = properDivisors(T);
return someEnum;
}

编译时出现错误:

    vector<T>divisors = properDivisors(T);

错误是:错误:')' 标记前的预期主表达式

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