CNI problem on MS Windows (GCC 3.4)
Ranjit Mathew
rmathew@gmail.com
Mon May 23 08:07:00 GMT 2005
Amir Bukhari wrote:
>
>>Amir> I am try to learn CNI. I have just tried a very simple example:
>>Amir> I compiled it like c++ test.cc -lgcj
>>Amir> but I got a number of undefined reference like
Use "gcj" to compile it instead of "g++" or "c++", like so:
gcj test.cc
That aside, I have a few comments on your example:
> #include <gcj/cni.h>
> #include <java/lang/System.h>
Add "#include <java/io/PrintStream.h>" if you
want to use "System.out.println()".
> int main(int argc, char *argv)
Pedantic nit: "argv" should be declared "char* argv[]" (it's
an *array* of pointers to characters).
> {
> using namespace java::lang;
>
>
> JvCreateJavaVM(NULL);
> JvAttachCurrentThread(NULL, NULL);
>
> String *message = JvNewStringLatin1("Hello from C++");
How about adding "System::out->println (message);" to
actually use this string? ;-)
> JvDetachCurrentThread();
>
>
> }
You missed a "return 0;" statement here. The
program should not have compiled without warnings.
HTH,
Ranjit.
--
Ranjit Mathew Email: rmathew AT gmail DOT com
Bangalore, INDIA. Web: http://ranjitmathew.hostingzero.com/
More information about the Java
mailing list