Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私が持っていると仮定します
void func(foo & obj)
そして、私が持っています
foo * object;
どうすればobjectの議論になりfuncますか?
object
func
逆参照するだけです:
func( *object );