I know that static at namespace scope means “internal linkage”. Now consider the following code:
static class Foo {} foo;
Does the static apply to Foo, foo or both?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It applies to the variable declared after the class definition.
In C++, there is no such thing as
static class. There are onlystaticobjects andstaticfunctions.