Objective-C static, extern, public variables?

Static in Objective-C means a different thing than static in a C++ class, in the context of static class data members and static class methods. In C and Objective-C, a static variable or function at global scope means that that symbol has internal linkage .

Up vote 3 down vote favorite share g+ share fb share tw.

I want to have a variable that I can access anywhere by importing a header file but I also want it to be static in the sense that there is only one of them created. In my . M file, I specify static BOOL LogStuff = NO; and in the initialize method I set the logging value: + (void)initialize { LogStuff = ... //whatever } However I want to be able to access my variable anywhere by importing the .

H file so I want to do something like this: static extern BOOL LogStuff; but I'm not allowed to do that. Is it possible to do the thing I'm trying to do? Thanks objective-c static public extern link|improve this question asked Oct 4 '11 at 1:01JPC1,106315 84% accept rate.

Static in Objective-C means a different thing than static in a C++ class, in the context of static class data members and static class methods. In C and Objective-C, a static variable or function at global scope means that that symbol has internal linkage. Internal linkage means that that symbol is local to the current translation unit, which is the current source file (.c or .

M) being compiled and all of the header files that it recursively includes. That symbol cannot be referenced from a different translation unit, and you can have other symbols with internal linkage in other translation units with the same name. So, if you have a header file declaring a variable as static, each source file that includes that header gets a separate global variable—all references to that variable within one source file will refer to the same variable, but references in different source files will refer to different variables.

If you want to have a single global variable, you can't have it in class scope like in C++. One option is to create a global variable with external linkage: declare the variable with the extern keyword in a header file, and then in one source file, define it at global scope without the extern keyword. Internal linkage and external linkage are mutually exclusive—you cannot have a variable declared as both extern and static.

An alternative, as Panos suggested, would be to use a class method instead of a variable. This keeps the functionality within the scope of the class, which makes more sense semantically, and you can also make it @private if you so desire. It does add a marginal performance penalty, but that's highly unlikely to be the bottleneck in your application (if you suspect it is, always profile first).

Declare it extern BOOL in your header file. Files that #import your header don't know or care if the external symbol is static or not.

I normally use this layout for my statics. NSMutableArray *macroArray; BOOL keepMacro; + (void) startMacro { if (macroArray == nil) { macroArray = NSMutableArray alloc initWithCapacity:100; } macroArray removeAllObjects; keepMacro = YES; } this is the startMacro command in my application. Both the Bool and the macroArray are both Static.

But notice they are not declared static or extern. This may not be the best practice, but this is what I do.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions