Overhead reflection/invoke

Monkey Forums/Monkey Programming/Overhead reflection/invoke

frank(Posted 2013) [#1]
Because it seems Monkey prepares everything at generation/compile time, is it ok to assume there is not much overhead using invoke (reflection) versus a regular method call? Or is that too naive?


therevills(Posted 2013) [#2]
You are correct, the reflection code is generated at compile time so at runtime it is just a regular method call.