vote up 0 vote down star

Is it legal?



class SomeClass {
public:
  static void f();
};

using SomeClass::f;

Edit: I forgot to qualify function. Sorry.

flag

80% accept rate
+1 to counteract the ridiculous downvote. – avakar Aug 22 at 8:38

2 Answers

vote up 2 vote down check

No, it is not. The using keyword is used to bring one or all members from a namespace into the global namespace, so that they can be accessed without specifying the name of the namespace everytime we use the members.

In the using statement you have given, the name of the namespace is not provided. Even if you had provided SomeClass there with a statement like using SomeClass::f; also, it won't work because SomeClass is not a namespace.

Hope this helps.

link|flag
2  
You can bring names to any namespace, not only the global one. You can use using on member function, but only to in a derived class. – avakar Aug 22 at 8:40
vote up 2 vote down

I think that using x; is normally used inside a class to bring method names from a base class into scope to avoid hiding base class methods.

You might be thinking of using namespace name; which only applies to namespaces.

You may be better off with a simple in-line function:

void f(){ SomeClass::f(); }
link|flag
I guess I'll use your inline trick. – Sergey Skoblikov Aug 22 at 8:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.