On Wed, 29 Mar 2006 02:26:54 +0200, "M. Fernandez"
<mache_1999@hotmail.com> wrote, quoted or indirectly quoted someone
who said :
>According to your explanation, it is impossible to have c++ objects
>running at the same time as Java objects when JAVA is the main program
>and has the control, for instance:
not at all. It is just that you can't manipulate or create C++ objects
DIRECTLY from Java. You need to write native method implementation
code in C++ to allow java objects and methods to indirectly create and
manipulate the C++ objects. Your c++ code has to do the object
creating an manipulating based on clues passed from Java by native
methods and parameters.
The following is not code. So I can't comment on whether it could
work.
>//Imposible jni program...
>MAIN_JAVA
[quoted text clipped - 4 lines]
> using created c++ object.
>continue with java.
v

Signature
Canadian Mind Products, Roedy Green.
http://mindprod.com Java custom programming, consulting and coaching.
M. Fernandez - 29 Mar 2006 08:37 GMT
> On Wed, 29 Mar 2006 02:26:54 +0200, "M. Fernandez"
> <mache_1999@hotmail.com> wrote, quoted or indirectly quoted someone
[quoted text clipped - 22 lines]
>> continue with java.
> v
Thank your very much, this discussion was very helpful.
Marcelo