Explicit Class Specializations for generic template class : template class « Class « C++






Explicit Class Specializations for generic template class

   
#include <iostream>
using namespace std;
   
template <class T> class myclass {
  T x;
public:
  myclass(T a) {
    cout << "Inside generic myclass\n";
    x = a;
  }
  T getx() { return x; }
};
   
template <> class myclass<int> {
  int x;
public:
  myclass(int a) {
    cout << "Inside myclass<int> specialization\n";
    x = a * a;
  }
  int getx() { return x; }
};
   
int main()
{
  myclass<double> d(10.1);
  cout << "double: " << d.getx() << "\n\n";
   
  myclass<int> i(5);
  cout << "int: " << i.getx() << "\n";
   
  return 0;
}
  
    
    
  








Related examples in the same category

1.template class with type parameter
2.template class with generic parameter
3.Demonstrate a very simple safe pointer class.
4.A generic safe-array class that prevents array boundary errors.
5.Get storage off stack for array
6.template extending
7.sequence template
8.Template Version of Generic binary sorted Tree.
9.template class with two generic parameters
10.generic stack template class
11.Using exceptions with templates.
12.Passing by reference and using virtual functions in exceptions.
13.Using Non-Type Arguments with Generic Classes
14.Using Default Arguments with Template Classes
15.Generic Classes: demonstrates a generic stack.
16.An Example with Two Generic Data Types
17.Applying Template Classes: A Generic Array Class