 |
C++Talk.NET C++ language newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Guest
|
Posted: Wed Sep 27, 2006 8:59 am Post subject: structure and pointers |
|
|
i have a structure
typedef struct tm
{
int date;
int hour;
int minutes;
} time;
i want to use this structure dynamically, ie, i want it to grow.
like it would be
time *sept= new time;
sept->date=15;
......
.........
.......
but i want something like
for(int i=0;i<MAX;i++)
{
sept[i]->date=i+5;
}
i want to grow the structure dynamically, ie, the valur of MAX is
provided at runtime.
how can i do tht???? |
|
| Back to top |
|
 |
Kai-Uwe Bux Guest
|
Posted: Wed Sep 27, 2006 9:11 am Post subject: Re: structure and pointers |
|
|
nemesia31 (AT) gmail (DOT) com wrote:
| Quote: | i have a structure
typedef struct tm
{
int date;
int hour;
int minutes;
} time;
i want to use this structure dynamically, ie, i want it to grow.
like it would be
time *sept= new time;
sept->date=15;
.....
........
......
but i want something like
for(int i=0;i<MAX;i++)
{
sept[i]->date=i+5;
}
i want to grow the structure dynamically, ie, the valur of MAX is
provided at runtime.
how can i do tht????
|
Sounds like std::vector< tm > might be what you need. Read up on the
standard library and in particular the standard containers.
Best
Kai-Uwe Bux |
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|