Я использую VS c ++ 6.0.Я читал, что 6.0 имеет некоторые проблемы с шаблонами ??
ОК ... если я оставлю объявление как:
template <class T> T jMin( T a, T b ){
return ( a < b );
}
Функция работает, но, выполнив следующее, я получаюошибка:
error C2039: 'jMin' : is not a member of 'CVid3Dlg'
Почему есть разница? ... и это может относиться к предыдущему сообщению ...
Если я добавлю определение в заголовок следующим образом, я получу:
error C2893: Failed to specialize function template 'T __thiscall CVid3Dlg::jMin(T,T)'
With the following template arguments:
'double'
// CVid3Dlg.h
class CVid3Dlg : public CDialog
{
public:
CVid3Dlg(CWnd* pParent = NULL); // standard constructor
template <typename T> T jMin( T a, T b );
protected:
HICON m_hIcon;
bool PreViewFlag;
BITMAP bm; //bitmap struct
CBitmap m_bmp; //bitmap object
CRect m_rectFrame; //capture frame inside main window
bool firstTime;
// Generated message map functions
//{{AFX_MSG(CVid3Dlg)
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
afx_msg void OnTimer(UINT nIDEvent);
afx_msg void GetVideo();
afx_msg void OnClose();
afx_msg void testing();
afx_msg void Imaging();
afx_msg void exTemplate();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
// CVid3Dlg.cpp
template <class T> T CVid3Dlg::jMin( T a, T b ){// <-- FAILS
return ( a < b );
}
void CVid3Dlg::exTemplate()
{
Image *im = new Image();
int s=0;
s = jMin((double)3, (double)4);
CString s1;
s1.Format("%d", s);
MessageBox(s1);
}