vote up -1 vote down star

I am brainstorming/researching a new way to use pointers. Maybe you guys have ideas. I want to use pointers without putting all objects on the heap. I want to be able to do

Type *p1 = new Type(); 
Type t;
Type *p2 = &t;
//(obviously above is in c++)
//then i would like to write
p2.member = p1.member; //T has changed

//Just to mess some ppl up bc they are not reading the question.
//How is this syntax
out Type p = &type;
p = val; //and not the c styled *p = val
&p = &type2

The problems I have now are pointer pointers if I write int **pp = &p1; how would I access what p1 is pointing to? by writing *pp = 5 ? Isn't writing it like that making the above pointless? what if this pointed to a struct? would i write *pp.member making * higher precedence? and not have pp->member?

What about increasing the int pointer in this memory copy?

void memcpy(int *s, *e)
{
    for( ; &s<&e; &s++)
        s = e;
}

Does that make sense or is it to weird? Would there be a problem with writing &var++?

Note: I am trying to get rid of ptr->member syntax. (and *var = val). I tagged this with language-design, this is NOT a C++ question.

flag

41% accept rate
2  
As far as I see, the whole premise of the question is based on your incomplete comprehension of pointers. I think C/C++ pointers can already do what you wish to do. – Artelius Oct 8 at 12:31
It is but i do not like the *var and -> syntax – acidzombie24 Oct 8 at 12:36
Python? Given the code a = [1,2,3]; b = a - b is now basically a pointer to the list.. – dbr Oct 9 at 18:24

closed as subjective and argumentative by TokenMacGuy, Dario, 01, Greg Hewgill, dmckee Oct 9 at 0:40

4 Answers

vote up 0 vote down

if pp is pointing to the address of p1 (which is a pointer) then yes pp has type: Type **

You access what p1 is pointing to (via pp) by double dereferencing pp, e.g: **p

If p1 is pointing to a struct then you can access the struct via pp by going: (*pp)->member

And yes there is a problem writing &var++ since '&var' is not an lvalue.

Read up on this stuff :)

link|flag
vote up -1 vote down

In the case of Type **pp = &p1; You would have to dereference it twice (*pp)->val or (**pp).val

Wouldn't references better serve what you want to do instead of pointers?

link|flag
-1 bc now when i notice ppl not reading question i -1 them – acidzombie24 Nov 20 at 14:30
vote up 2 vote down

In my humble opinion, not liking a syntax element of a language is not an argument for looking for workarounds. Sometimes it is an indication of a misunderstanding of that syntax element. The best to cope with it is to learn not only the specific syntax element itself but also what lies behind and why it exists the way it exists.

EDIT:

Only C-like languages use *, & and -> notations. If you want to look for other pointer mechanisms, possible examples are Ada access types and 'address representation attribute.

link|flag
Other pointer mechanisms are the "almost everything's a pointer" concept, originally in Lisp but also Java and mostly C# nowadays. – David Thornley Oct 8 at 15:04
vote up 7 vote down

Switch to Pascal

  • dereferencing operator: ^
  • address operator: @

If you don't like the dereferencing and structure access operator, you can use with along the dereferenced pointer and use all the fields as if they were local variables. But otherwise you'll have to stick with (pVariable^).member and then is when you start to appreciate the -> combined dereference and member access operator. There's yet another advantage of Pascal: you can declare parameters by reference with var; that are accessed as if they were simple values, without pointer dereference syntax.

Da C gangsta pointah style

#define GIMME_DA_FCKNG_ADDRESS(x) (&x)
#define GIMME_DA_FCKNG_CONTENT(x) (*x)
#define GIMME_DA_FCKNG_POINTAH_MEMBAH(x,m) GIMME_DA_FKCNG_CONTENT(x).m
#define GIMME_DA_FCKING_MEMBAH_DOUBLE_POINTAH_SHIT(x,m) GIMME_DA_FKCNG_CONTENT(GIMME_DA_FKCNG_CONTENT(x)).m

So instead of:

MyType **pp;
MyType *p;
MyType v;

p = &v;
pp = &p;
p->foo = bar;
(*p)->foo = baz;

you can do:

//declarations stay the same
p = GIMME_DA_FCKNG_ADDRESS(v);
pp = GIMME_DA_FCKNG_ADDRESS(p);
GIMME_DA_FCKNG_MEMBAH(p, foo) = bar;
GIMME_DA_FCKING_MEMBAH_DOUBLE_POINTAH_SHIT(pp, foo) = baz;

You can also add a suffix "BRO" to the names to make it even better sounding when reading aloud!

Lovely.

link|flag
lol +1 lmao for the laughs – acidzombie24 Oct 8 at 15:26
2  
that was the idea of the second part :-p anyway, using macros to alter the syntax might seem nice and cool at first, but it's not (you'll notice when other people read your code and you hear them swearing xD) – fortran Oct 8 at 15:34
i have programed for a long time. I know all about ugly macros. I dont dare use a macro (or macro looking keywords). i'm likely using a token or do the strangeness above. – acidzombie24 Oct 8 at 16:13
1  
Pascal's dereferencing operator goes on the other end of the pointer, like this: pVariable^.member – Greg Hewgill Oct 9 at 2:18
@Greg You might be right, there's a long time since I wrote my last line of Pascal... ^_^ – fortran Oct 9 at 7:46
show 1 more comment

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