C 11 How to alias a function

0 votes

If I have a class Foo in namespace bar:

namespace bar
{
    class Foo { ... }
};

I can then:

using Baz = bar::Foo;

and now it is just like I defined the class in my namespace with the name Baz.

Is it possible to do the same for functions?

namespace bar
{
    void f();
}

And then:

using g = bar::f; // error: ‘f’ in namespace ‘bar’ does not name a type

What is the safest method to carry this out?

The answer ought to apply to template functions as well.

Definition: If some entity B is an alias of some other entity A, then the (stripped) generated code is unchanged if any or all instances of A are substituted by B in the source code (but not declarations or definitions, of course). 

An alias is typedef A B, for instance. 

#define B A is a code name (at least). 

In contrast to a "unaliased" A, which can have "immediate semantics," T& B = A is not an alias and B can be effectively implemented as an indirect pointer.

Aug 23, 2022 in C++ by Nicholas
• 7,760 points

edited Mar 4 23 views

No answer to this question. Be the first to respond.

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP