devxlogo

Calling A Template Member Function

Calling A Template Member Function

You can define a member function that is a template in a non-template class. For example:

 class A{public: template  void func(); // member template };

size=3>
How can you call such a member function? C++ defines a special syntactic form for this:

 int main(){ A a; a.func (); // argument type is double a.func  (); // int
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist