Declaring class objects in a header file - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T03:09:55Zhttp://stackoverflow.com/feeds/question/633634http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/633634/declaring-class-objects-in-a-header-file1Declaring class objects in a header fileRaugnar2009-03-11T07:24:27Z2009-03-11T14:11:38Z
<p>Greetings everyone.</p>
<p>I seem to be snagging on a fundimental but I cant find the solution anywhere. Anywho, will go ahead and explain.</p>
<p>I have a program consisting of three files; main.ccp, add.h, add.cpp.</p>
<p>I declare the class 'SA' in add.h and have all my functions defined in add.cpp</p>
<p>additional.h</p>
<pre><code>class SA {
...
public
int x;
} Obj1, Obj2;
</code></pre>
<p>main.ccp</p>
<pre><code>#include "additional.h"
int main() {
Obj1.x = 5;
...
}
</code></pre>
<p>This gives me a link error on compiling:
error LNK2005: "class SA Obj1" (?Obj1@@3VSA@@A) already defined in main.obj</p>
<p>The only deffinition of the object occurs in add.h, and no where else. The program compiles just fine if declare the objects in the main and not the header:</p>
<p>main.ccp</p>
<pre><code>#include "additional.h"
int main() {
SA Obj1;
Obj1.x = 5;
...
}
</code></pre>
<p>The issue is that I want to use the objects primarially within add.cpp, but still need to initialise several public values through main.cpp. Any words of wisdom?</p>
http://stackoverflow.com/questions/633634/declaring-class-objects-in-a-header-file/633638#6336383Answer by sharptooth for Declaring class objects in a header filesharptooth2009-03-11T07:28:09Z2009-03-11T07:28:09Z<p>Use <em>extern</em> keyword. Declare these public objects as extern in header, then define instances in one of the cpps.</p>
<p>Like this:</p>
<pre><code>extern SA Obj1; // in header
SA Obj1;// in any one (no more than one) cpp
</code></pre>
http://stackoverflow.com/questions/633634/declaring-class-objects-in-a-header-file/633643#6336436Answer by MrValdez for Declaring class objects in a header fileMrValdez2009-03-11T07:29:46Z2009-03-11T07:29:46Z<p>Declare Obj1 and Obj2 in your .cpp instead of at .h</p>
<p>add.h</p>
<pre><code>class SA {
...
public
int x;
};
</code></pre>
<p>main.cpp</p>
<pre><code>#include "additional.h"
SA Obj1, Obj2;
int main() {
Obj1.x = 5;
...
}
</code></pre>
<p>If you want to declare Obj1 and Obj2 in your .h file, add extern in the .h file like so:</p>
<pre><code>extern SA Obj1, Obj2;
</code></pre>
<p>but you should declare the objects in a .cpp file in your project:</p>
<p>main.cpp</p>
<pre><code>SA Obj1, Obj2;
</code></pre>
<p>The reason for this is that everytime you include the .h file, you are declaring Obj1 and Obj2. So if you include the .h file two times, you will create two instance of Obj1 and Obj2. By adding the keyword extern, you are telling the compiler that you have already decalred the two variables somewhere in your project (preferably, in a .cpp file).</p>