非常感謝linux社區(qū)的zht666給我指了一條明路,本文轉(zhuǎn)載自: http://www.linuxidc.com/Linux/2014-04/99688p2.htm
2.JNA模擬普通傳值參數(shù)
C語(yǔ)言函數(shù):
int function1(int a, float b, long c)
JNA模擬:
int function1(int a, float b, long c)
3.JNA模擬C語(yǔ)言數(shù)組
C語(yǔ)言函數(shù):
void function1(char * data)
void function2(const unsigned char* data)
JNA模擬:
void function1(char[] data) 或者 void function1(byte[] data) void function2(char[] data) 或者 void function2(byte[] data)
4.JNA模擬基本類(lèi)型指針
JNA的ByReference有很多子類(lèi),這些類(lèi)都在com.sun.jna.ptr包中:
IntByReference,LongByReference,F(xiàn)loatByReference,DoubleByReference,ShortByReference、ByteByReference、PointerByReference等等
從這些名字大家應(yīng)該可以看出來(lái)他們的作用。
下面直接上例子吧:
C語(yǔ)言函數(shù):
long function(int * a, long * b, float * c, double * d, short * e)
JNA模擬:
long function(IntByReference aRef, LongByReference bRef, FloatByReference cRef, DoubleByReference dRef, ShortByReference eRef)
如何構(gòu)建這些對(duì)象呢?
FloatByReference cRef = new FloatByReference(); //使用默認(rèn)初始值(具體多少我也不知道) FloatByReference cRef = new FloatByReference(0); //初始值為0
調(diào)用方法和普通參數(shù)一樣:
function(…, cRef, …);
獲取結(jié)果值:
float fVal = cRef.getValue();
JNA都為我們做的很簡(jiǎn)單,不是嗎?
5.JNA模擬指針、指針的指針、模擬void ,void 等指針*
C函數(shù):
void function(int * pInt, int * ppInt, void pVoid, void ** ppVoid)
JNA模擬:
void function(IntByReference pInt, PointerByReference ppInt, Pointer pVoid, PointerByReference ppVoid) 調(diào)用舉例: IntByReference pInt = new IntByReference(0); PointerByReference ppInt = new PointerByReference(Pointer.NULL); //指向指針的指針,初始化為NULL Pointer pVoid = Pointer.NULL; //創(chuàng)建一個(gè)指向NULL的指針 PointerByReference ppVoid = new PointerByReference(Pointer.NULL); 調(diào)用:function(pInt, ppInt, pVoid, ppVoid);
(1)PointerByReference是指向指針的指針,遇到指針的指針都可以使用它來(lái)模擬,那么如何獲取到它指向的指針呢?
Pointer p = ppVoid.getValue(); //獲取指針
(2)如何獲取指針的指針呢?
Pointer p1 = ….; PointerByReference pp1 = new PointerByReference(p1); PointerByReference ppp1 = new PointerByReference(pp1.getPointer());
這些操作大家可以自己做實(shí)驗(yàn)嘗試,對(duì)于PointerByReference對(duì)象,getValue()是取值,而getPointer()是取這個(gè)指針的指針。
看著復(fù)雜,其實(shí)都很簡(jiǎn)單!JNA要比JNI好用多了。
新聞熱點(diǎn)
疑難解答
圖片精選
網(wǎng)友關(guān)注