Is there any tool to port C++ APi to Java?. Or Is it manually portable any C++ to Java?. appreciated. It is very straight forward C++ code (like C functions).
Porting C++ API to Java
Collapse
X
-
If you want to use C++ API in Java, you should interest in 'native' keyword. In this way you could call C/C++ functions in Java program. -
-
You want your code to be independent of any C++ code? You want to port all C++ code to Java?
Regards
Dheeraj JoshiComment
-
Only if you call this method, which you make native. Cannot make all API native. Only methods can be native.Comment
-
I am little bit confused about the requirement. If there is a way to call native C++ calls directly from Java, why can't you call it?
Regards
Dheeraj JoshiComment
Comment