It seems to me that eval() is treated with the same disdain that goto is. And by eval, I mean a function for executing a string as code, as seen in PHP, Python, JavaScript, etc.. Is there ever a situation where using eval() is justified(except perl)? And if not, why do so many languages implement it?
|
Yes - when there is no other way to accomplish the given task with a reasonable level of clarity and within a reasonable number of lines of code. This eliminates 99% of cases where |
|||
|
|
|
eval is often the most expedient solution in situations where you are dynamically generating code. Even in languages that do not officially support eval, such as Java, they support reflection and modification of classes at runtime which are similar. (See books such as Stu Halloway's Component Development for the Java Platform ) |
||||
|
|
|
For quick hacks, no problem because it's a handy quick-out. In production code, consider it a last resort—and even then, try something else—because |
||||
|
|
|
I used it once while pentesting a site - we wrote a small php script that decrypts and executes cryptographically signed payloads from non-logged HTTP data sources on the fly. This is the best use I've seen of eval() so far. (In other words: no, I've never seen a good use for eval) |
||||
|
|
|
Maybe I use So my answer is: ' |
|||||||
|
|
Writing a cool textbook example on how easy it is to implement a "calculator" in language X? =) |
|||
|
|
|
Offhand thought: eval is good for implementing a poor man's expression compiler, or things like that. It's also a dull, rusty substitute for hygienic macros. |
|||
|
|
|
One reasonable use is if you have an interpreted language that you've built on top of another language, but you still want to provide some sort of "escape hatch" to allow people to get back to functions that are provided by the underlying language. One example is implementing Prolog in Lisp and then defining a predicate that allows direct use of Lisp functions via |
|||
|
|
|
For debugging/testing an idea before implementing it the proper way. For instance, you're making a toy calculator, and you want to work on the gui first, so you just use |
|||
|
|
evalin Perl as the primary exception handling mechanism. Therefore, I submit to you that there cannot be one correct answer to this question: There is a very good reason to useevalif you are programming in Perl, and probably no real good reason if you are programming in JavaScript. Either specify the languages to which this question applies or make it CW. – Sinan Ünür Dec 1 '09 at 16:23evalfunction in Lisp? It's essential in normal operation (the read-eval-print loop), but in my experience is almost never used outside of that. Every time I was tempted, it looked like Common Lisp macros were a better idea. – David Thornley Dec 1 '09 at 17:42