Can static variables exist anywhere in C++ other than in a class? If so, what behaviour do they exhibit? I assume they’re not being shared between instances as there is no object.
Share
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.
Yes.
The lifetime of a static object is the life of the program and the linkage of the object is internal if the variable is declared at file scope (and no linkage if defined at block scope).