C++ Pointers to Pointers in Java

前端 未结 5 2055
青春惊慌失措
青春惊慌失措 2020-12-11 03:00

I am a Java noob. I have been able to grasp the concept of converting C/C++ pointers into Java references and this has gone fairly smoothly.

I hit a piece of code t

5条回答
  •  清歌不尽
    2020-12-11 03:30

    The only "pointer-like" method is unsafe() . You can allocate memory with it. But you cannot go outside the JVM area :)

提交回复
热议问题