Click here to Skip to main content
15,902,635 members

Comments by Joren Heit (Top 13 by date)

Joren Heit 15-Jul-14 16:02pm View    
Haha, wow... that's insane :P Nice one
Joren Heit 15-Jul-14 14:08pm View    
I'm aware that CINT started as a C interpreter (hence the name), and that over time more and more C++ features have been added. By now, it supports templates, classes, inheritance, and much of the stuff that makes C++ C++. The fact that the language has been simplified to some extent does not mean it's not possible.

I must say I'm not at all familiar with C++/CLI (not a fan of platform specific languages; yes I know about Mono but let's be honest...), but in what way would the bytecode to be interpreted by the CLR be different from assembly code interpreted by a virtual x86 machine?
Joren Heit 30-Jun-14 7:53am View    
Sure, always go with the non-portable solution.
Joren Heit 24-Jun-14 17:33pm View    
Non-portable! Why not use STL when you can? See my answer :-)
Joren Heit 22-Jun-14 11:49am View    
Sidenote: when applying inheritance to structs, the default is public. Of course you can derive a struct from a class and vice versa, in which case the default depends on the type inherited from.