472,373 Members | 1,940 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,373 software developers and data experts.

Initializing a static variable inside a namespace

ik
Hello All,
I am facing a problem as follows.

I have a header file called myNameSpace.h which as the following
contents.

//Header file .. myNameSpace.h

namespace myNameSpace {
static int iMyInt = 0;
};

And my source file, as follows.

// Source file myNameSpace.cpp

#include "myNameSpace.h"

myNameSpace::iMyInt = 0;

int main(int argc, char* argv[])
{
return 0;
}

This gives me a compiler error.. on MingW.

D:/users/others/cpp_trials/SimplePrograms/myNameSpace.cpp:5: ISO C++
forbids declaration of `iMyInt' with no type
D:/users/others/cpp_trials/SimplePrograms/myNameSpace.cpp:5:
redefinition
of `int myNameSpace::iMyInt'
D:/users/others/cpp_trials/SimplePrograms/myNameSpace.h:5: `int
myNameSpace::iMyInt' previously defined here

at the same time ..

#include "myNameSpace.h"

int main(int argc, char* argv[])
{
myNameSpace::iMyInt = 0;
return 0;
}

This compiles..

I understand it is true for any variable declaration, at the global
namespace. Once declared any other reinitalization, is taken as a
re-definition.
I would like to know what is the correct explanation to this ?
Any help will be appreciated.
Thanks in Advance
~Ik

Jul 22 '05 #1
2 10940

"ik" <ik****@gmail.com> wrote in message
news:10**********************@k17g2000odb.googlegr oups.com...
Hello All,
I am facing a problem as follows.

I have a header file called myNameSpace.h which as the following
contents.

//Header file .. myNameSpace.h

namespace myNameSpace {
static int iMyInt = 0;
This is dubious. If you include this header in more than one source file you
will get multiple variables. If you change the value of the variable in one
file you will not see the change in another file. Is that what you want? It
seems unlikely.
};

And my source file, as follows.

// Source file myNameSpace.cpp

#include "myNameSpace.h"

myNameSpace::iMyInt = 0;
This is wrong, you have missed out the type (int).

int main(int argc, char* argv[])
{
return 0;
}

This gives me a compiler error.. on MingW.

D:/users/others/cpp_trials/SimplePrograms/myNameSpace.cpp:5: ISO C++
forbids declaration of `iMyInt' with no type
D:/users/others/cpp_trials/SimplePrograms/myNameSpace.cpp:5:
redefinition
of `int myNameSpace::iMyInt'
D:/users/others/cpp_trials/SimplePrograms/myNameSpace.h:5: `int
myNameSpace::iMyInt' previously defined here

at the same time ..

#include "myNameSpace.h"

int main(int argc, char* argv[])
{
myNameSpace::iMyInt = 0;
return 0;
}

This compiles..
Because it is an assignment not a declaration.

I understand it is true for any variable declaration, at the global
namespace. Once declared any other reinitalization, is taken as a
re-definition.
I wouldn't know about that. I try to declare and initialise my variables
once only.
I would like to know what is the correct explanation to this ?
Any help will be appreciated.
Thanks in Advance
~Ik


Here's what you should be doing (probably)

//Header file .. myNameSpace.h

namespace myNameSpace {
extern int iMyInt;
}

// Source file myNameSpace.cpp

#include "myNameSpace.h"

namespace myNameSpace {
int iMyInt = 0;
}

It's really just the same as global variables outside of a namespace.

john
Jul 22 '05 #2

"ik" <ik****@gmail.com> wrote in message
Hello All,
I am facing a problem as follows.

I have a header file called myNameSpace.h which as the following
contents.

//Header file .. myNameSpace.h

namespace myNameSpace {
static int iMyInt = 0; };
There should be no trailing semicolon after a namespace definition.
And my source file, as follows.

// Source file myNameSpace.cpp

#include "myNameSpace.h"

myNameSpace::iMyInt = 0;
int myNameSpace::iMyInt = 0; // Redefinition

If your intent was to give it a value then it should have been in a function
block. You can't have such floating expressions without a function body.
int main(int argc, char* argv[])
{
return 0;
}

This gives me a compiler error.. on MingW.

D:/users/others/cpp_trials/SimplePrograms/myNameSpace.cpp:5: ISO C++
forbids declaration of `iMyInt' with no type
This is because you missed on the "int".
D:/users/others/cpp_trials/SimplePrograms/myNameSpace.cpp:5:
redefinition
of `int myNameSpace::iMyInt'
This is becuase you are redefining myNameSpace::iMyInt.
D:/users/others/cpp_trials/SimplePrograms/myNameSpace.h:5: `int
myNameSpace::iMyInt' previously defined here

at the same time ..

#include "myNameSpace.h"

int main(int argc, char* argv[])
{
myNameSpace::iMyInt = 0;
Inside a function this is just an expression assigning 0 to
myNameSpace::iMyInt.
return 0;
}


Sharad
Jul 22 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: svilen | last post by:
hello again. i'm now into using python instead of another language(s) for describing structures of data, including names, structure, type-checks, conversions, value-validations, metadata etc....
6
by: pembed2003 | last post by:
Hi all, I am reading the book "C++ How to Program" and in the chapter where it discuss scope rule, it says there are four scopes for a variable: function scope file scope block scope...
2
by: Drew McCormack | last post by:
I am getting an error in g++ 4.0.0 that I did not get in g++ 3.4. I have a header with the following const variables with namespace scope: namespace Periphery { extern const double...
9
by: Bryan Parkoff | last post by:
I have noticed that C programmers put static keyword beside global variable and global functions in C source codes. I believe that it is not necessary and it is not the practice in C++. Static...
1
by: Sandro Bosio | last post by:
Hello everybody, my first message on this forum. I tried to solve my issue by reading other similar posts, but I didn't succeed. And forgive me if this mail is so long. I'm trying to achieve the...
8
by: SM | last post by:
I've always wonder if there is diference when declaring and initializing a varible inside/outside a loop. What's a better practice? Declaring and initializing variables inside a loop routine,...
3
by: StephQ | last post by:
In utility.hpp I have: namespace utility { template <class T, double (T::*F)(double) const> class Display { private: static double resolution;
14
by: Jess | last post by:
Hello, I learned that there are five kinds of static objects, namely 1. global objects 2. object defined in namespace scope 3. object declared static instead classes 4. objects declared...
16
by: RB | last post by:
Hi clever people :-) I've noticed a lot of people stating not to use static variables with ASP.NET, and, as I understand it, the reason is because the variable is shared across user sessions -...
2
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and efficiency. While initially associated with cryptocurrencies...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge required to effectively administer and manage Oracle...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was proposed, which integrated multiple engines and...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific technical details, Gmail likely implements measures...
1
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web server and have made sure to enable curl. I get a...
0
by: Rahul1995seven | last post by:
Introduction: In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python has gained popularity among beginners and experts...
1
by: Johno34 | last post by:
I have this click event on my form. It speaks to a Datasheet Subform Private Sub Command260_Click() Dim r As DAO.Recordset Set r = Form_frmABCD.Form.RecordsetClone r.MoveFirst Do If...
1
by: ezappsrUS | last post by:
Hi, I wonder if someone knows where I am going wrong below. I have a continuous form and two labels where only one would be visible depending on the checkbox being checked or not. Below is the...
0
by: jack2019x | last post by:
hello, Is there code or static lib for hook swapchain present? I wanna hook dxgi swapchain present for dx11 and dx9.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.