Top "Evaluation" questions

Anything related to evaluation of expressions, i.e. the process used to determine the value of expressions in a running program.

How does a ArrayList's contains() method evaluate objects?

Say I create one object and add it to my ArrayList. If I then create another object with exactly the …

java object arraylist evaluation
Having to set objectives for developers, even though objectives don't work

It is generally accepted that setting measurable objectives for software developers doesn't work , as too much focus on the objectives …

evaluation
Turn string into operator

How can I turn a string such as "+" into the operator plus? Thanks!

python evaluation
Is it possible to execute a string in MySQL?

I have to convert a MSSQL stored proc that passes a varchar that is a query: INSERT INTO Results EXEC (@…

mysql eval evaluation exec execute
How to evaluate functions in GDB?

I wonder why evaluate function doesn't work in gdb? In my source file I include, when debugging in gdb, these …

function gdb evaluation
In Java, what are the boolean "order of operations"?

Let's take a simple example of an object Cat. I want to be sure the "not null" cat is either …

java logic boolean evaluation operator-precedence
Database choice for large data volume?

I'm about to start a new project which should have a rather large database. The number of tables will not …

database data-warehouse evaluation
Evaluate string with math operators

Is there an easy way to evaluate strings like "(4+8)*2" So that you'd get the int value of 24? Or is there …

c# string parsing math evaluation
Bash: evaluate a mathematical term?

echo 3+3 How can I evaluate such expressions in Bash, in this case to 6?

bash math sh evaluation
Does Java have an "is kind of class" test method

I have a baseclass, Statement, which several other classes inherit from, named IfStatement, WhereStatement, etc... What is the best way …

java reflection inheritance evaluation