I am developing C++ on Netbeans 7.1 on Ubuntu 11.04. I was wondering if someone could tell me why Stack fs(5); is seen as an undefined reference to to `Stack::Stack(int)'. Why is it not seen as a class with float used for T?
#include <iostream>
using namespace std ;
template <class T>
class Stack
{
public:
Stack(int = 10) ;
~Stack() { delete [] stackPtr ; }
int method1(const T&);
int method2(T&) ;
int method3()const { return top == -1 ; }
int method4() const { return top == size - 1 ; }
private:
int attribute1 ;
int attribute2 ;
T* stackPtr ;
} ;
using namespace std;
int main()
{
// This line gives the error message "undefined reference to `Stack<float>::Stack(int)'"
Stack<float> fs(5);
return 0;
}
Thanks, Peter.
using namespace std;twice, just to show how much you don't care that it's a terrible, terrible thing to say? – Kerrek SB Feb 19 '12 at 4:53using namespace stdinside your library headers (and thus forcing it upon others), there is nothing wrong with using it. – Shahbaz Feb 20 '12 at 0:13