devxlogo

Declare Non-Template Functions and Classes as Friends of a Template

A friend of a class template can be a function template or class template, a specialization of a function template or class template, or an ordinary (non-template) function or class. A class template can have various types of friendship. First, you can declare ordinary functions and classes as friends of a given class template. Non-template friend declarations of a class template look quite similar to friend declarations of a nontemplate class. In this example, the class template Vector declares the ordinary function f() and class Thing as its friends:

 class Thing {/*..*/};template  class Vector{public:  //

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Seven Service Boundary Mistakes That Create Technical Debt

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.