devxlogo

Forward Declarations and Templates

Forward Declarations and Templates

It is illegal to use forward declarations with typedef names, as in:

    class string;   void f(string& s); //illegal, string is a typedef name

Even a typename won’t do here:

    typename  std::string; //still illegal   void f(std::string& s);  

The problem with these forward declarations is that std::string is not a class, but a typedef name defined like this:

    typedef basic_string, allocator >string;

In order to generate the correct mangled name for the function f, the compiler has to see the non-typedef’d form of its argument. In other words, there is no escape from #including the header in this case.

See also  Why ChatGPT Is So Important Today
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