Inside class, I would like to define some const strings.however the compiler reports error when I use
class A {
static const std::string s = "test"
};
inside the class. How to do that? Do I have to define the const outside the class defination?
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.
I think you have to define it outside.