Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C++ template specialization, calling methods on types that could be pointers or references unambiguously

Summary

Is there a way to call a class method on a templated type that could be a pointer or a reference without knowing which and not get compiler/linker errors?


Details

I have a templated QuadTree implementation that can take any of the following non-trivial user-defined types:

//Abstract Base Class a2de::Shape  //Derived Classes a2de::Point a2de::Line a2de::Rectangle a2de::Circle a2de::Ellipse a2de::Triangle a2de::Arc a2de::Spline a2de::Sector a2de::Polygon 

But they could be a pointer OR a reference as they are all derived from a2de::Shape. So the specializations are declared as:

template class QuadTree<a2de::Shape&>; //...similar for all derived types as references.  template class QuadTree<a2de::Shape*>; //...similar for all derived types as pointers 

The problem I am having is the ability to call a class method when the indirection (or lack thereof) is unknown and due to the templates, both sets of code are generated:

template<typename T> bool QuadTree<T>::Add(T& elem) {      //When elem of type T is expecting a pointer here     //-> notation fails to compile where T is a reference i.e.:     //template class QuadTree<a2de::Shape&>     //with "pointer to reference is illegal"      if(elem->Intersects(_bounds) == false) return false;      //... } 

If I change the above line to use the . (dot) notation:

template<typename T> bool QuadTree<T>::Add(T& elem) {      //When elem of type T is expecting a reference here     //. (dot) notation fails to compile where T is a pointer i.e.:     //template class QuadTree<a2de::Shape*>     //with "pointer to reference is illegal"      if(elem.Intersects(_bounds) == false) return false;      //...  } 

If I remove the reference-based types in favor of the pointer-based types (including in the declaration and usage of the Quadtree class) I get the error left of .<function-name> must have class/struct/union.

If I remove the pointer-based type in favor of the reference-based types (including in the declaration and usage of the Quadtree class) I get the aforementioned reference to pointer is illegal again.

compiler: VS2010-SP1

like image 757
Casey Avatar asked Jan 22 '13 19:01

Casey


People also ask

Can template type be a pointer?

A template has only one type, but a specialization is needed for pointer, reference, pointer to member, or function pointer types. The specialization itself is still a template on the type pointed to or referenced.

How will you restrict the template for a specific datatype?

There are ways to restrict the types you can use inside a template you write by using specific typedefs inside your template. This will ensure that the compilation of the template specialisation for a type that does not include that particular typedef will fail, so you can selectively support/not support certain types.

What is the specialty of a template function give example?

Template in C++is a feature. We write code once and use it for any data type including user defined data types. For example, sort() can be written and used to sort any data type items. A class stack can be created that can be used as a stack of any data type.

What is the difference between generic class template and specialization template?

Key differences between generics and C++ templates: Generics are generic until the types are substituted for them at runtime. Templates are specialized at compile time so they are not still parameterized types at runtime. The common language runtime specifically supports generics in MSIL.


1 Answers

Small overloaded functions can be used to turn reference into pointer:

template<typename T> T * ptr(T & obj) { return &obj; } //turn reference into pointer!  template<typename T> T * ptr(T * obj) { return obj; } //obj is already pointer, return it! 

Now instead of doing this:

 if(elem->Intersects(_bounds) == false) return false;  if(elem.Intersects(_bounds) == false) return false; 

Do this:

 if( ptr(elem)->Intersects(_bounds) == false) return false; 

If elem is a reference, the first overload ptr will be selected, else the second will be selected. Both returns pointer, which means irrespective of what elem is in your code, the expression ptr(elem) will always be a pointer which you can use to invoke the member functions, as shown above.

Since ptr(elem) is pointer, which means checking it for nullptr be good idea:

 if( ptr(elem) && (ptr(elem)->Intersects(_bounds) == false)) return false; 

Hope that helps.

like image 118
Nawaz Avatar answered Oct 17 '22 02:10

Nawaz