472,143 Members | 1,801 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,143 software developers and data experts.

Good resource for learning pointers

I understand the basics of pointers, they point to memory locations. I
would like to know resources for learning all about poters. I am
having some problems erasing elements of pointers from a vector. I
wold like to know where I can get some in depth information on how to
use pointers in various situations. It seems that all most books have
to say about pointers is that they point to memory locations. Some
even say they are read/write iterators for arrays. I am using pointers
refrences and handles, most of the time I get the syntax correct but I
have a problem in a complex program and I cant figure out what the
problem is:

I created a handle to contor my dynamicly binded units and I need
pointer to these handles to work in the space holder object in my map
manager for this game.

bool spaceholder::kill(){
std::vector<hunit*>::iterator itr = u.begin();
if(!u.empty()){
while(itr != u.end()){
if((*itr)->marked()){
itr = u.erase(itr);
kill = true;
}++itr;

}
}
}

Jan 12 '07 #1
6 1393

"JoeC" <en*****@yahoo.comwrote in message
news:11**********************@38g2000cwa.googlegro ups.com...
>I understand the basics of pointers, they point to memory locations.
The contain address values which represent memory locations.
I
would like to know resources for learning all about poters.
I find this one reasonable:
http://pw1.netcom.com/~tjensen/ptr/pointers.htm
Note: it's in the context of C, but it works the
same as C++, except for the 'void*' automatic
conversion.

But after looking at your code, I don't think your
trouble (if I've correctly guessed what it is),
has to do with pointers, but with iterators.
I am
having some problems erasing elements of pointers from a vector.
Specifically what problems?
I
wold like to know where I can get some in depth information on how to
use pointers in various situations.
Good textbooks (see www.accu.org) or see link above.
It seems that all most books have
to say about pointers is that they point to memory locations.
Which books?
Some
even say they are read/write iterators for arrays.
That's a reasonable description of one thing they
could be used for.
I am using pointers
refrences and handles,
'handle' is a term not defined by the C++ language, but
the 'handle' abstraction is often implemented as a pointer.
most of the time I get the syntax correct but I
have a problem in a complex program and I cant figure out what the
problem is:
You still haven't described your problem, but looking at your code,
and making a couple assumptions, I can guess what the trouble is.
>
I created a handle to contor my dynamicly binded units and I need
pointer to these handles to work in the space holder object in my map
manager for this game.

bool spaceholder::kill(){
std::vector<hunit*>::iterator itr = u.begin();
if(!u.empty()){
while(itr != u.end()){
Aside:
If begin() == end() then the container is empty,
so the test for !empty() is redundant.
if((*itr)->marked()){
Is type 'hunit' an iterator or pointer to a struct/class, or does it
overload the '->' operator? If not, this syntax is incorrect.
I'll go ahead and assume that the answer to this question is yes.
itr = u.erase(itr);
This is probably your problem. vector.erase() returns an
iterator to the element beyond the one erased. If you've
just erased the last element, this returned iterator will
be 'end()', in which case ...
kill = true;
}++itr;
.... this line would cause 'itr' to increment past 'end()',
producing undefined behavior. Was the problem a crash,
or 'segfault', or 'access violation' or similar?
>
}
}
}
Try:

bool spaceholder::kill(){
std::vector<hunit*>::iterator itr = u.begin();
while(itr != u.end()){
if((*itr)->marked()){
itr = u.erase(itr);
kill = true;
continue; /* new line */
}++itr;
}
}

If this does not solve your problem, you'll need to give
more specific information, ideally including a complete,
compilable example which exhibits the problem.

-Mike
Jan 12 '07 #2
Mike Wahler wrote:
"JoeC" <en*****@yahoo.comwrote in message
[redacted]
>>
bool spaceholder::kill(){
std::vector<hunit*>::iterator itr = u.begin();

[redacted]
> if((*itr)->marked()){

Is type 'hunit' an iterator or pointer to a struct/class, or does it
overload the '->' operator? If not, this syntax is incorrect.
I'll go ahead and assume that the answer to this question is yes.
You're mistaken. itr is an iterator into a vector of hunit*. Therefore
(*itr) refer to an hunit*, and by definition, -is defined. The syntax
is *always* correct here.
Jan 12 '07 #3
JoeC <en*****@yahoo.comwrote:
I understand the basics of pointers, they point to memory locations. I
would like to know resources for learning all about poters. I am
having some problems erasing elements of pointers from a vector. I
wold like to know where I can get some in depth information on how to
use pointers in various situations.
Alf P. Steinbach's tutorial has lots of great information on pointers:

http://home.no.net/dubjai/win32cpptu...ters/ch_01.pdf

--
Marcus Kwok
Replace 'invalid' with 'net' to reply
Jan 12 '07 #4
JoeC wrote:
bool spaceholder::kill(){
std::vector<hunit*>::iterator itr = u.begin();
if(!u.empty()){
while(itr != u.end()){
if((*itr)->marked()){
itr = u.erase(itr);
kill = true;
}++itr;

}
}
}
bool spaceholder::kill() {
std::vector<hunit*>::iterator itr = u.begin();
while ( itr != u.end() ) {
if ( (*itr)->marked() ) {
// you probably need to do something here to destroy the
hunit contained,
// unless some other pointer also points to is
itr = u.erase( itr );
kill = true;
}
else {
++itr;
}
}
}

Jan 13 '07 #5

"red floyd" <no*****@here.dudewrote in message
news:3w*******************@newssvr13.news.prodigy. net...
Mike Wahler wrote:
>"JoeC" <en*****@yahoo.comwrote in message [redacted]
>>>
bool spaceholder::kill(){
std::vector<hunit*>::iterator itr = u.begin();
[redacted]
>> if((*itr)->marked()){

Is type 'hunit' an iterator or pointer to a struct/class, or does it
overload the '->' operator? If not, this syntax is incorrect.
I'll go ahead and assume that the answer to this question is yes.

You're mistaken. itr is an iterator into a vector of hunit*. Therefore
(*itr) refer to an hunit*, and by definition, -is defined. The syntax
is *always* correct here.
You're right, of course. Joe, sorry for the misinformation.

-Mike
Jan 13 '07 #6

Mike Wahler wrote:
"JoeC" <en*****@yahoo.comwrote in message
news:11**********************@38g2000cwa.googlegro ups.com...
I understand the basics of pointers, they point to memory locations.

The contain address values which represent memory locations.
I
would like to know resources for learning all about poters.

I find this one reasonable:
http://pw1.netcom.com/~tjensen/ptr/pointers.htm
Note: it's in the context of C, but it works the
same as C++, except for the 'void*' automatic
conversion.
Thanks, I will check it out. I have a specific problem that I think I
fixed but I would like to learn more about pointers and refrences
because there are times when I have trouble with them.

Jan 14 '07 #7

This discussion thread is closed

Replies have been disabled for this discussion.

Similar topics

29 posts views Thread by Cheng Mo | last post: by
60 posts views Thread by K. G. Suarez | last post: by
3 posts views Thread by newbie | last post: by
17 posts views Thread by I_got_questions? | last post: by
9 posts views Thread by Tom the Canuck | last post: by
6 posts views Thread by bambooforest | last post: by
75 posts views Thread by Amkcoder | last post: by
reply views Thread by Saiars | last post: by

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.