News:

ASSUMING DIRECT CONTROL.

Main Menu

Pointers... ugh

Started by blue_slime, February 12, 2008, 08:32:34 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

blue_slime

Since we're not allowed to use structs in this project I'm working on right now, I have to use pointers.  To be precise, the way it works out I need to use pointers to pointers to pointers to data.  o_O

My brain hurts.

Super

Be sure to tell us how that works out for you.

JMV

Pointers make things easier since if you delete one object you can just change where the pointer points to.
Boyah Forums | Join Boyah

Silverhawk79

I'm glad I quit trying to learn to program. :x

Zovistograt

don't you love when programming gets all crazy :D
"I lovat a gabber.  I could listen to maure and moravar again.  Regn onder river.  Flies do your float.  Thick is the life for mere." - James Joyce (Finnegans Wake, page 213)

blue_slime

Quote from: JMV290 on February 12, 2008, 09:27:41 PM
Pointers make things easier since if you delete one object you can just change where the pointer points to.

Yeah, I have more control, but it's brain racking sometimes when I have to manage pointers that point to all sorts of places, like implementing a linked list.  It's a lot easier in Java since I don't have to take care of that. :P