gpt4 book ai didi

c++ - g++ 在编译时走得太远

转载 作者:行者123 更新时间:2023-11-30 01:57:24 24 4
gpt4 key购买 nike

我正在尝试使用递归模板在 C++ 中实现非常简单的单继承堆栈跟踪:

#include <iostream>
using namespace std;
template <class C> struct MakeAlias : C{ typedef C Base; };
class StackTrace{
public:
static int var;
virtual ~StackTrace() {}
template <class T> void printStackTrace(T* c){
if(typeid(T)==typeid(StackTrace))return;
cout << typeid(T).name() << "." << endl;
class T::Base *V;
printStackTrace(V);
}
};
class A : public MakeAlias<StackTrace>{
};
class B : public MakeAlias<A>{
};
class C : public MakeAlias<B>{
public:
void hello(){
cout << "hello from ";
StackTrace::printStackTrace(this);
cout << endl;
}

};
int main(){
C c;
c.hello();
}

一切都应该没问题,但是当我尝试编译它时,g++ 忽略了
if(typeid(T)==typeid(StackTrace))return; 行并返回以下错误:

st.cpp: In member function `void StackTrace::printStackTrace(T*) [with T = StackTrace]':
st.cpp:13: instantiated from `void StackTrace::printStackTrace(T*) [with T = A]'
st.cpp:13: instantiated from `void StackTrace::printStackTrace(T*) [with T = B]'
st.cpp:13: instantiated from `void StackTrace::printStackTrace(T*) [with T = C]'
st.cpp:24: instantiated from here
st.cpp:12: error: no type named `Base' in `class StackTrace'
st.cpp:13: error: no type named `Base' in `class StackTrace'

它尝试调用 C::Base::Base::Base::Base/StackTrace::Base/类,该类在运行时永远不会被调用。即使我在 printStackTrace 声明之后立即放置 return 语句,也会评估相同的错误。为什么不动态检查范围和成员函数以及为什么编译器忽略返回

最佳答案

模板是一个纯粹的编译时构造。它们只是指示编译器生成类或函数,然后正常编译(因此它们必须在语法上有效,some special exceptions 除外)。

您可以通过重载 printStackTrace 来解决这个问题:

template <class T>
void printStackTrace(T *c)
{
cout << typeid(T).name() << "." << endl;
typename T::Base *V;
printStackTrace(V);
}

void printStackTrace(StackTrace *c)
{
cout << typeid(StackTrace).name() << "." << endl;
}

Live example

关于c++ - g++ 在编译时走得太远,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18768759/

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