Skip to content

Instantly share code, notes, and snippets.

@eswdd
Last active August 29, 2015 13:55
Show Gist options
  • Save eswdd/8704992 to your computer and use it in GitHub Desktop.
Save eswdd/8704992 to your computer and use it in GitHub Desktop.
java / .net differences

jit

  • java may decide to jit and will generally use execution data to aid optimisation
  • .net always uses jit and on first access, so can't use execution data to aid optimisation, so can at best be only as good as a c compiler (static compilation)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment