What's the equivalent to IntPtr (C#) in Java?

2020-03-24 09:01发布

问题:

What's the equivalent to IntPtr (C#) in Java (JNA)?

回答1:

com.sun.jna.ptr.IntByReference



回答2:

I expect that would be a com.sun.jna.ptr.ByReference or one of its concrete sub-types.



标签: c# java jna