gpt4 book ai didi

C++,继承模板嵌套类

转载 作者:行者123 更新时间:2023-11-30 04:36:27 27 4
gpt4 key购买 nike

试图获得 tensor_ref<A>::result在 tensor_view 中可见。

template<class A, class Range, class = void>
struct tensor_view
: detail::tensor_ref<A>,
const_tensor_view<A, Range, tensor_view<A, Range> >
{
using detail::tensor_ref<A>::result;

...

template<class A>
struct tensor_ref<A, typename same_rank<A,N>::enable>
: const_tensor_ref<A>
{
template<class I>
struct result {
typedef typename traits<A>::reference type;
};

error: no class template named "result" in "struct tensor::tensor_view<...

什么给了?

最佳答案

这行不通 isn't intended使其适用于 C++ 的任何进一步修订。

所以你不能使用声明 - 使用普通的 tensor_view::template result 方式来代替。

关于C++,继承模板嵌套类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4542100/

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