Is there a java equivalent of the python eval function?

后端 未结 6 1634
佛祖请我去吃肉
佛祖请我去吃肉 2020-11-27 07:59

Is there a java equivalent of the python eval function?

This would be a function which takes an arbitrary string and attempts to execute it in the current context.

6条回答
  •  旧时难觅i
    2020-11-27 08:51

    It's not that simple in Java. Java is a compiled language and in order to "eval" some code, it needs to be compiled. Python is interpreted and thus "eval" is much simpler.

提交回复
热议问题