1

抱歉,如果这是一个非常基本的问题,我正在尝试运行以下程序,但我遇到了分段错误。

我明白什么?

有一个函数 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*().

}
4

1 回答 1

2

operator T*()缺少返回语句,因此它显然返回了一个垃圾值(指向内存中随机位置的指针),并且取消引用该指针而不是段错误。

你的编译器怎么没有出错,这超出了我的范围。

于 2013-02-21T09:57:00.650 回答