up vote 2 down vote favorite
2
share [g+] share [fb]

What data types can be passed between c++ and java/java to c++? Also, are the data types equivalent in terms of size?

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

Using Java Native Interface you can pass just about anything between C++ and Java.

link|improve this answer
and what about from java to c++? – Partial Jul 4 '09 at 16:16
1  
JNI Supports both directions. It can be tricky and there may be better solutions for you but reading a little about JNI will answer many of your questions and is generally useful knowledge to have. – Duck Jul 4 '09 at 16:27
3  
JNA seems to be the popular slightly higher-level Java-native interface at the moment. – Tom Hawtin - tackline Jul 4 '09 at 16:31
feedback

Also check out CNI if using g++. Don't know if JNI is the same way, but you're basically just using C++ to write within a JVM. That is, you can't pass pure C++ objects to Java. Instead, everything must derive from Object.

link|improve this answer
What do you mean by "derive from Object"? – Partial Jul 4 '09 at 16:32
feedback

I prefer Swig myself. It does the JNI wrapping for you allowing calls in any direction you'd like, multithreading, etc. It also works with multiple languages including Java, Python, Perl etc...

Swig is also portable as your C++ code is - I use it myself on Linux and Windows to bridge our C++ code to Java and Python.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.