yy.cpp
来自「financal instrument pricing using c」· C++ 代码 · 共 24 行
CPP
24 行
template <class N, class V> class SimplePropertySet
{ // N.B. Stripped down version
private:
N nam; // The name of the set
// The SimplePropertySet list using the STL list
list<Property<N,V> > sl;
public:
// User can use the STL iterator
typedef list<Property<N,V> >::iterator iterator;
typedef list<Property<N,V> >::const_iterator const_iterator;
// Iterator functions
iterator Begin();
const_iterator Begin() const;
iterator End();
const_iterator End() const;
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?