Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
390 views
in Technique[技术] by (71.8m points)

pointers - c++ *& dereference address of operator?

In a recent assignment for a data structures class, we we're expected to use this "*&" in a function parameters list. I am having trouble finding info on why this exists, and even what it does. Is it standard practice to use this?

Here's a code snippet

template <class T>
Thing <T> * action(const T &dataIn, Thing <T> *& thingIn)
{
    if(thingIn == NULL)
    {
        Node <T> *newThing = new Thing <T> (dataIn);

        newThing->ptr = thingIn;
        thingIn= newThing ;

        return(newThing );
    }
}

I guess another part of my question is, why use "*&" at all couldn't you just send the pointer?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

It is used for a reference type pointing to a pointer

Example

int *&ref = ptr;

in the above example, ref is a reference to an int pointer ptr

which then can be passed in to a function

function(int *&ref)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...