vote up 1 vote down star

I have this code in my main file:

int grid[] = { 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 ,
               1 , 2 , 3 , 2 , 3 , 2 , 3 , 1 , 
               1 , 0 , 0 , 0 , 0 , 0 , 0 , 1 , 
               1 , 0 , 1 , 0 , 1 , 0 , 1 , 1 , 
               1 , 0 , 1 , 0 , 0 , 0 , 0 , 1 , 
               1 , 0 , 0 , 0 , 0 , 0 , 1 , 1 , 
               1 , 1 , 1 , 1 , 1 , 1 , 1 , 0 };

How do I define it in my header so that I can access the variable throughout my class?

flag
What is your question? – Andrew Flanagan Mar 17 at 21:17
This is madness. – Kyle Walsh Mar 17 at 21:17
And now thanks to you, I have this code in my nightmares. – John Rasch Mar 17 at 21:17
HA HA HA! Wish I could +1 your tag of 'epic-failure' – Kyle Walsh Mar 17 at 21:19
Now that the question has been edited (i.e. has been created) I must remove it! – John Rasch Mar 17 at 21:20
show 3 more comments

2 Answers

vote up 5 vote down
extern int grid[];

Let's suppose you had some code like this:

int grid[] = { 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 ,
        1 , 2 , 3 , 2 , 3 , 2 , 3 , 1 , 
        1 , 0 , 0 , 0 , 0 , 0 , 0 , 1 , 
        1 , 0 , 1 , 0 , 1 , 0 , 1 , 1 , 
        1 , 0 , 1 , 0 , 0 , 0 , 0 , 1 , 
        1 , 0 , 0 , 0 , 0 , 0 , 1 , 1 , 
        1 , 1 , 1 , 1 , 1 , 1 , 1 , 0 };

int arr_sum(int* arr, int len)
{
    int sum = 0;
    for (int i = 0; i < len; i++) {
            sum += arr[i];
    }
    return sum;
}

int main(int argc, char** argv)
{
    printf("%d\n", arr_sum(grid, sizeof(grid)/sizeof(int) ));
    return 0;
}

If you wanted to separate this out into two different files, say, you could have the following, for example:

in grid.c:

int grid[] = { 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 ,
        1 , 2 , 3 , 2 , 3 , 2 , 3 , 1 , 
        1 , 0 , 0 , 0 , 0 , 0 , 0 , 1 , 
        1 , 0 , 1 , 0 , 1 , 0 , 1 , 1 , 
        1 , 0 , 1 , 0 , 0 , 0 , 0 , 1 , 
        1 , 0 , 0 , 0 , 0 , 0 , 1 , 1 , 
        1 , 1 , 1 , 1 , 1 , 1 , 1 , 0 };

In main.c:

extern grid[];

int arr_sum(int* arr, int len)
{
    int sum = 0;
    for (int i = 0; i < len; i++) {
            sum += arr[i];
    }
    return sum;
}

int main(int argc, char** argv)
{
    printf("%d\n", arr_sum(grid, sizeof(grid)/sizeof(int) ));
    return 0;
}
link|flag
how do I construct the array in the implementation file? – rob g Mar 17 at 21:25
You shouldn't need to construct it anywhere else. Have the code that you listed above in main.c, and put "extern int grid[]" in a common header file used by the other source files that use grid. Or if you don't want the header, just put the extern wherever grid is used. – Parappa Mar 17 at 21:26
it compiles, but if i try to access the array from a different function to where it was defined, the compiler throws an error :/ – rob g Mar 17 at 21:27
You'll need the extern in a header file called "externals.h" -- or something like that. It will hold all of your external variable declarations. In your source file containing main, don't include the externals.h file, but do include the actual definitions of those external variables. – tvanfosson Mar 17 at 21:27
Is grid defined within the scope of a function? You have to move it to a more global scope if you want to use it in other functions. – Parappa Mar 17 at 21:32
show 3 more comments
vote up 3 vote down

You can't define it in your header. You have to declare it in your header and define it in a source (.m) file:

// In MyClass.h
extern int grid[];

// In MyClass.m
int grid[] = {...};
link|flag
compiles, but when I'm in a different function in the *.m file, the compiler complains that it's undefined. – rob g Mar 17 at 21:32
you want to define it at the "top level" of the .m file (ie. outside of all functions). By convention, global variables such as this are defined at the top of the .m file, just below any #import or #include statements. – Barry Wark Mar 17 at 21:39
Any header file which needs to use grid[] needs to have an "extern int grid[]" declaration in it, or needs to #include another header file which has the extern declaration. See also stackoverflow.com/questions/309801/… – Adam Rosenfield Mar 17 at 22:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.