I want to make an array static and also want to reference it in the other translation unit. Then I define it as static int array[100] = {...}, and declare it in other translation unit as extern int array[]. But the compiler tells me that the storage class of static and extern conflict with each other, how could I pass it and still reach my goal?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
Remove the
|
|||
|
|
|
E.g. in zlib, |
|||||||||||||
|
|
Instead of making the variable global, consider leaving it static and adding public accessors and modifiers to it. It's not a great thing to directly couple to naked variables in other modules. |
|||
|
|
staticvariable would mean the same thing as making a class variablestaticor making a local variable in a functionstatic. It's an understandable mistake, but it doesn't even do nearly that. – Seth Carnegie Nov 10 '11 at 2:13