C
cppaddict
Hi,
I have a Java class with a number of native methods, many of them
somewhat complex in their implementation.
I was thinking about compiling the implementation of each native
method into its own .dll file, and then loading all of them inside the
Java class.
The other option is to create a single .dll.
1. Are there performance advantages of one method over the other?
2. Is one method considered better design than the other? What are
the design considerations?
3. Is one method generally considered the best practice?
Thanks for any thoughts,
cpp
I have a Java class with a number of native methods, many of them
somewhat complex in their implementation.
I was thinking about compiling the implementation of each native
method into its own .dll file, and then loading all of them inside the
Java class.
The other option is to create a single .dll.
1. Are there performance advantages of one method over the other?
2. Is one method considered better design than the other? What are
the design considerations?
3. Is one method generally considered the best practice?
Thanks for any thoughts,
cpp