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.

a = [1,2,3]; b = a- b is now basically a pointer to the list.. – dbr Oct 9 at 18:24