0

我正在研究“使用 C++ 进行金融工具定价”中的一些 C++ 代码——一本关于使用 C++ 进行期权定价的书。下面的代码是一个去除了许多细节的小片段,它基本上试图定义一个SimplePropertySet旨在包含名称和列表的类。

#include <iostream>
#include <list>
using namespace::std;

template <class N, class V> class SimplePropertySet
{
    private:
    N name;     // The name of the set
    list<V> sl;

    public:
    typedef typename list<V>::iterator iterator;
    typedef typename list<V>::const_iterator const_iterator;

    SimplePropertySet();        // Default constructor
    virtual ~SimplePropertySet();   // Destructor

    iterator Begin();           // Return iterator at begin of composite
    const_iterator Begin() const;// Return const iterator at begin of composite
};
template <class N, class V>
SimplePropertySet<N,V>::SimplePropertySet()
{ //Default Constructor
}

template <class N, class V>
SimplePropertySet<N,V>::~SimplePropertySet()
{ // Destructor
}
// Iterator functions
template <class N, class V>
SimplePropertySet<N,V>::iterator SimplePropertySet<N,V>::Begin()//<--this line gives error
{ // Return iterator at begin of composite
    return sl.begin();
}

int main(){
    return(0);//Just a dummy line to see if the code would compile
}

在 VS2008 上编译此代码时,我收到以下错误:

warning C4346: 'SimplePropertySet::iterator' : dependent name is not a type
    prefix with 'typename' to indicate a type
error C2143: syntax error : missing ';' before 'SimplePropertySet::Begin'
error C4430: missing type specifier - int assumed. Note: C++ does not support default-int

我在这里犯错或忘记了什么愚蠢或基本的东西吗?是语法错误吗?我无法将手指放在它上面。从中获取此代码片段的书说他们的代码是在 Visual Studio 6 上编译的。这是与版本相关的问题吗?

谢谢。

4

1 回答 1

2

如编译器所示,您必须替换:

template <class N, class V>
SimplePropertySet<N,V>::iterator SimplePropertySet<N,V>::Begin()

和 :

template <class N, class V>
typename SimplePropertySet<N,V>::iterator SimplePropertySet<N,V>::Begin()

有关从属名称的说明,请参阅此链接

于 2010-11-27T19:10:37.017 回答