"Julio M. Otuyama" <otuyama@xxxxxxxxx> writes: > Is it possible to compile C++ code in JVM bytecode? Yes and no. You can write operations in C++ which can not be represented in byte code, at least not efficiently. However, it can be done if you represent all of the C memory in Java objects. There are various tools out there. gcc does not do it. Ian