044
20.10.2003, 10:05 Uhr
virtual
Sexiest Bit alive (Operator)
|
Ich glaube nicht, daß man das Non-Member machen muß. Allerdings sollte Windalf sich überlegen was er mit
C++: |
CMatrix<Typ,zeilen,int> operator*(CMatrix<Typ,spalten,int>& m)
|
eigentlich sagen will. Ich denke, eigentlich sollte es sowas sein:
C++: |
template<class T, int Z, int S> class Matrix { public: template<int D> Matrix<T,Z,D> operator * (const Matrix<T,S,D>& roOther) const; };
... template<class T, int Z, int S> template<int D> Matrix<T,Z,D> operator * (const Matrix<T,S,D>& roOther) const { ... }
|
-- Gruß, virtual Quote of the Month Ich eß' nur was ein Gesicht hat (Creme 21) |