抱歉,如果这是一个非常基本的问题,我正在尝试运行以下程序,但我遇到了分段错误。
我明白什么?
有一个函数 proc(t) ,其中 t 通过运算符 T 与 T* 关联。因此,在执行 proc(t) 函数时,我们将有一个指向 T 的指针类型,并且调用 display () 函数是合法的。
我想要的是 ?
1)我在哪里犯了错误?
2)我的理解是否正确?
#include <iostream>
using namespace std;
template <typename T>
class sPtr
{
private:
T * __pointee;
public:
operator T * () {
cout <<"Inside T* () "<<endl;
};
explicit sPtr ( T * t )
{
__pointee = t;
};
T * operator->() {
return __pointee;
}
};
class JTest
{
private:
int x;
public:
JTest ( int l=100) { x=l; };
void display ();
};
void JTest::display()
{
cout <<"Display API x is "<<x<<endl;
}
void proc (JTest * tmp)
{
cout <<" proc"<<endl;
tmp->display ();
cout <<"Invoking JTest -> display "<<endl;
}
int main ( int argc, char ** argv)
{
sPtr <JTest> t(new JTest);
t->display();
proc(t); // Invokes operator T*().
}