473,672 Members | 2,478 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

extern with arrays of structure

10 New Member
Hi,

I tried to share some data between 2 .cc files hence declared the arrays of structure as extern in one of the .cc files.

However I get abnormal entries in the original array entries otherwise I wouldn't have got.

file1.h
---------
struct Mylistdetails {
int id;
int value;
}


file1.cc
----------
struct Mylistdetails myList_[MAX_NO];


file2.cc
-----------
#include <file1.h>

extern struct Mylistdetails myList_[MAX_NO];


The purpose here is to call these array data into the file2.Here,myLi st_[i].id and myList_[i].value are just unexpected once declared as 'extern'.If not used this extern method the expected values are observed once only file2 is being used.

Could you kindly specify the behaviour of this.Many thanks for your advise on how to tackle such a problem.
Mar 17 '07 #1
18 9239
horace1
1,510 Recognized Expert Top Contributor
did your code compile?
there is a ; missing in
Expand|Select|Wrap|Line Numbers
  1. struct Mylistdetails {
  2. int id;
  3. int value;
  4. };  // missing ;
and when including a file in the current directory it should be in ""
e.g. file2.cc
Expand|Select|Wrap|Line Numbers
  1. #include "file1.h"
  2.  
  3. extern struct Mylistdetails myList_[MAX_NO];
  4.  
you could put the extren declaration in the header file
Mar 17 '07 #2
sss555
10 New Member
did your code compile?
there is a ; missing in
Expand|Select|Wrap|Line Numbers
  1. struct Mylistdetails {
  2. int id;
  3. int value;
  4. };  // missing ;
It compiled without any problem.


and when including a file in the current directory it should be in ""
e.g. file2.cc
Expand|Select|Wrap|Line Numbers
  1. #include "file1.h"
  2.  
  3. extern struct Mylistdetails myList_[MAX_NO];
  4.  
you could put the extren declaration in the header file
well it is not in the current directory, so i specified the path
#include <direct/file1.h>

Yes I tried putting extern declaration in the heade file too(file1.h).St ill doesn't work.

Thanks for your attention.
Mar 17 '07 #3
horace1
1,510 Recognized Expert Top Contributor
well it is not in the current directory, so i specified the path
#include <direct/file1.h>

Yes I tried putting extern declaration in the heade file too(file1.h).St ill doesn't work.

Thanks for your attention.
I guess you are on a unix system, try
Expand|Select|Wrap|Line Numbers
  1. #include "direct/file1.h"
assuming you have a directory direct in your current directory which contains the file1.h
Mar 17 '07 #4
sss555
10 New Member
I guess you are on a unix system, try
Expand|Select|Wrap|Line Numbers
  1. #include "direct/file1.h"
assuming you have a directory direct in your current directory which contains the file1.h
I'm working on Linux, and it works normally in #include<direct/file1.h> style.

Could you explain me how could I use, extern with arrays of structure?

Thank you
Mar 17 '07 #5
horace1
1,510 Recognized Expert Top Contributor
Expand|Select|Wrap|Line Numbers
  1. #include <filename>                              // include file from 'standard' place 
  2.  
the file is assumed to be in a 'standard' directory in the file system which the C/C++ compiler automatically searches,.

Expand|Select|Wrap|Line Numbers
  1. #include "filename"       // include file from current directory else 'standard' place 
  2.  
The second form of #include (filename enclosed in "") searches the current directory for filename and then, if it is not found, the 'standard' directory.

which you use it depends where your direct/file1.h file is - in the 'standard' place or relative to the current directory?

try the following
Expand|Select|Wrap|Line Numbers
  1. // file1.h
  2.  
  3. struct Mylistdetails {
  4. int id;
  5. int value;
  6. };
  7.  
  8. #define MAX_NO 10
  9.  
  10. extern struct Mylistdetails myList_[MAX_NO];
  11.  
  12. void setup();   // function prototype - function in file2.cpp
  13.  
Expand|Select|Wrap|Line Numbers
  1. // file2.cpp
  2.  
  3. #include "file1.h"
  4.  
  5. void setup()
  6. {
  7. for(int i=0;i<MAX_NO; i++)
  8.     myList_[i].id=i;
  9. }
  10.  
Expand|Select|Wrap|Line Numbers
  1. // file1.cpp
  2. #include <cstdlib>
  3. #include <iostream>
  4. #include "file1.h"
  5.  
  6. using namespace std;
  7.  
  8. struct Mylistdetails myList_[MAX_NO];
  9.  
  10. int main(int argc, char *argv[])
  11. {
  12.     setup();
  13.     for(int i=0;i<MAX_NO; i++)
  14.         cout << myList_[i].id << endl;
  15.     return EXIT_SUCCESS;
  16. }
  17.  
when i build this
g++ file1.cpp file2.cpp

and run it I get
./a
0
1
2
3
4
5
6
7
8
9
Mar 17 '07 #6
sss555
10 New Member
Expand|Select|Wrap|Line Numbers
  1. #include <filename>                              // include file from 'standard' place 
  2.  
the file is assumed to be in a 'standard' directory in the file system which the C/C++ compiler automatically searches,.

Expand|Select|Wrap|Line Numbers
  1. #include "filename"       // include file from current directory else 'standard' place 
  2.  
The second form of #include (filename enclosed in "") searches the current directory for filename and then, if it is not found, the 'standard' directory.

which you use it depends where your direct/file1.h file is - in the 'standard' place or relative to the current directory?

try the following
Expand|Select|Wrap|Line Numbers
  1. // file1.h
  2.  
  3. struct Mylistdetails {
  4. int id;
  5. int value;
  6. };
  7.  
  8. #define MAX_NO 10
  9.  
  10. extern struct Mylistdetails myList_[MAX_NO];
  11.  
  12. void setup();   // function prototype - function in file2.cpp
  13.  
Expand|Select|Wrap|Line Numbers
  1. // file2.cpp
  2.  
  3. #include "file1.h"
  4.  
  5. void setup()
  6. {
  7. for(int i=0;i<MAX_NO; i++)
  8.     myList_[i].id=i;
  9. }
  10.  
Expand|Select|Wrap|Line Numbers
  1. // file1.cpp
  2. #include <cstdlib>
  3. #include <iostream>
  4. #include "file1.h"
  5.  
  6. using namespace std;
  7.  
  8. struct Mylistdetails myList_[MAX_NO];
  9.  
  10. int main(int argc, char *argv[])
  11. {
  12.     setup();
  13.     for(int i=0;i<MAX_NO; i++)
  14.         cout << myList_[i].id << endl;
  15.     return EXIT_SUCCESS;
  16. }
  17.  
when i build this
g++ file1.cpp file2.cpp

and run it I get
./a
0
1
2
3
4
5
6
7
8
9

In fact I want to retrieve file1 data into file2.If I understand your code correctly it does the other way round.

I tried this way and when I compile I get the following error

file1.h:270: error: storage class specified for 'myList_'



Thank you for your suggestions.
Mar 17 '07 #7
horace1
1,510 Recognized Expert Top Contributor
try this which passes data from file1.cpp to file2.cpp
Expand|Select|Wrap|Line Numbers
  1. // file1.h
  2.  
  3. struct Mylistdetails {
  4. int id;
  5. int value;
  6. };
  7.  
  8. #define MAX_NO 10
  9.  
  10. extern struct Mylistdetails myList_[MAX_NO];
  11.  
  12. void setup();   // function prototype - function in file1.cpp
  13. void print();   // function prototype - function in file2.cpp
  14.  
  15.  
Expand|Select|Wrap|Line Numbers
  1. // file2.cpp
  2.  
  3. #include <iostream>
  4. #include "file1.h"
  5.  
  6. using namespace std;
  7.  
  8.  
  9. void print()
  10. {
  11.     for(int i=0;i<MAX_NO; i++)
  12.       cout << myList_[i].id << endl;
  13. }
  14.  
  15.  
Expand|Select|Wrap|Line Numbers
  1. // file1.cpp
  2.  
  3. #include <cstdlib>
  4. #include <iostream>
  5. #include "file1.h"
  6.  
  7. using namespace std;
  8.  
  9. struct Mylistdetails myList_[MAX_NO];
  10.  
  11. void setup()
  12. {
  13. for(int i=0;i<MAX_NO; i++)
  14.     myList_[i].id=i;
  15. }
  16.  
  17.  
  18. int main(int argc, char *argv[])
  19. {
  20.     setup();
  21.     print();
  22.     return EXIT_SUCCESS;
  23. }
  24.  
Mar 18 '07 #8
sss555
10 New Member
try this which passes data from file1.cpp to file2.cpp
Expand|Select|Wrap|Line Numbers
  1. // file1.h
  2.  
  3. struct Mylistdetails {
  4. int id;
  5. int value;
  6. };
  7.  
  8. #define MAX_NO 10
  9.  
  10. extern struct Mylistdetails myList_[MAX_NO];
  11.  
  12. void setup();   // function prototype - function in file1.cpp
  13. void print();   // function prototype - function in file2.cpp
  14.  
  15.  
Expand|Select|Wrap|Line Numbers
  1. // file2.cpp
  2.  
  3. #include <iostream>
  4. #include "file1.h"
  5.  
  6. using namespace std;
  7.  
  8.  
  9. void print()
  10. {
  11.     for(int i=0;i<MAX_NO; i++)
  12.       cout << myList_[i].id << endl;
  13. }
  14.  
  15.  
Expand|Select|Wrap|Line Numbers
  1. // file1.cpp
  2.  
  3. #include <cstdlib>
  4. #include <iostream>
  5. #include "file1.h"
  6.  
  7. using namespace std;
  8.  
  9. struct Mylistdetails myList_[MAX_NO];
  10.  
  11. void setup()
  12. {
  13. for(int i=0;i<MAX_NO; i++)
  14.     myList_[i].id=i;
  15. }
  16.  
  17.  
  18. int main(int argc, char *argv[])
  19. {
  20.     setup();
  21.     print();
  22.     return EXIT_SUCCESS;
  23. }
  24.  

I still get this error while trying to compile.

file1.h:270: error: storage class specified for ‘myList_’



Thank you
Mar 18 '07 #9
horace1
1,510 Recognized Expert Top Contributor
I still get this error while trying to compile.

file1.h:270: error: storage class specified for ‘myList_’



Thank you
I have run the code in my last post on Linux and Windows (using Cygwin). I compile with
g++ file1.cpp file2.cpp

then execute the file a.out or a.exe OK
Mar 18 '07 #10

Sign in to post your reply or Sign up for a free account.

Similar topics

7
9034
by: Kieran Simkin | last post by:
I have in my project in main.c a number of arrays defined like this (outside of any functions): char muser, mpass; I'm declaring them in a number of other .c files (inside functions) like this: extern char muser, mpass; However, in one of these functions outside of main.c I need to snprintf into these buffers. Usually when using snprintf I call it like this: snprintf(muser, sizeof muser, "text");
33
3857
by: Peter Seaman | last post by:
I understand that structures are value types and arrays and classes are reference types. But what about arrays as members of structures i.e. as in C struct x { int n; int a; }
1
3093
by: Jeff | last post by:
I am struggling with the following How do I marshal/access a pointer to an array of strings within a structure Than Jef ----------------------------------------------------------------
7
329
by: balasam | last post by:
Dear friend, I am having Linux platform.I am declaring the array of structure in one file and how can access the values of the array of structure in another file. Using " extern " ,to extern the structure but when i access the values of the array of structure ,the compilers displays the error message. Program :
10
4984
by: David Fort | last post by:
Hi, I'm upgrading a VB6 app to VB.net and I'm having a problem with a call to a function provided in a DLL. The function takes the address of a structure which it will fill in with values. I get an error: ---------------- An unhandled exception of type 'System.NullReferenceException' occured in
7
454
by: ruffiano | last post by:
I have a file called first.cpp that contains the following declarations: static const char *MY_STRING1 = "My first string"; static const char *MY_STRING2 = "My second string" If I wanted to use MY_STRING1 and MY_STRING2 in a header file, would the following be correct? extern static const char *MY_STRING1; extern static const char *MY_STRING2;
6
5893
by: Aston Martin | last post by:
Hi All, ********************** My Situation ********************** I am working on project that involves passing a structure to unmanaged code from .Net world (well using C#). Perhaps an example will prove useful. structure MyStruct { // this is a complicated struct declaration in the sense
6
3032
by: Scoots | last post by:
I know the usually applied workaround for multiple definitions of header files, but I have a problem on this one. This time, I can't just ifndef the header file that defines my structure. So I have two classes that I've managed to dodge around this problem for a while, but now I need the include in both classes. This wasn't a problem until now, when I'm trying to declare an stl map with a structure as a data type.
4
6013
by: sharat | last post by:
Hi all. I am writing a a code in c++ . i have defined a global structure in a header file(user define header file) say headerfile1.h and declared a class in file2.h which is having some public funtion which returns the struct variable and definition of the fun in in file1.cpp . I am getting the error in compilation that "struct_var' has incomplete type and not allowed and return type is incoplete. If i am trying to return the structure...
0
8498
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8418
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8940
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8694
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7457
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6249
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4433
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2830
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2083
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.