I am currently learning C++. I have practice (about 2 years) in Java (which I learned at my university).
I have problems understanding the concept of classes and member variables in C++.
Given the following example:
File: Mems.h:
class Mems{
int n;
Mems();
};
File Mems.cpp:
class Mems{
Mems::Mems(){
//Do something in constructor
}
};
I do not know, where I have to put my variables if I want them to stick to the object:
When i define them in the header-file I cant access them in the cpp File and vice versa.
Could you please give me a hint?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…