我有各种Scala原生方法。一些例子:
@native protected def xOpen(): Long
@native protected def flushNative(xServPtr: Long): Unit
@native protected def drawLineNative(xServPtr: Long, winPtr: Long, x1: Int, y1: Int, x2: Int, y2: Int): Unit
@native protected def newGraphicsContextNative(xServPtr: Long, winPtr: Long): Long
//And a couple of the signatures from the C++ file.
extern "C" JNIEXPORT void JNICALL Java_pXClient_XCClass_flushNative(JNIEnv * env, jobject c1, jlong displayPtr)
extern "C" JNIEXPORT jlong JNICALL Java_pXClient_XCClass_newGraphicsContextNative(JNIEnv * env, jobject c1,
jlong displayPtr, jlong winPtr)
我希望在指针上有更强的输入,而不是将它们全部传递给它们。有没有办法在这里使用AnyVal类,例如:
class XServPtr(val value: Long) extends AnyVal
class WinPtr(val value: Long) extends AnyVal
我可以向JNI添加自定义类型吗?然后我可以从JNI类型到特定的c ++指针类型进行自定义c ++隐式类型转换,并在两端都具有类型安全性。
答案 0 :(得分:0)
如果您希望在类型中明确,可以使用类似
的内容type wPtr = Any
type HANDLE = wPtr
type HWND = wPtr
@native def SHGetFolderPath(hwndOwner: HWND, nFolder: Int, hToken: HANDLE, dwFlags: Int, pszPath: Array[Char]): Int
......至少,我准备好了:)
编辑:最后我制作了一个@585534的Scala版本来做我想做的事。