Here is a programming test used in a job interview. I find it has a very strange non-OO perspective and wonder why anyone would approach a constructor from this perspective. As a very experienced Java programmer, I immediately question the ability of the individual who wrote this code and the strange perspective of the question.
I find these strange out of context questions on interviews disturbing. I would love feedback from other experienced OO Java programmers.
Complete the Solver constructor so that a call to solveAll return a list with 2 values including the square root and the inverse of the integer passed as parameter.
public interface MathFunction {
double calculate(double x);
}
public class Solver {
private List<MathFunction> functionList;
public Solver() {
//Complete here
}
public List<Double> solveAll(double x) {
List<Double> result = new ArrayList<Double>();
for (MathFunction function : this.functionList) {
result.add(new Double(function.calculate(x)));
}
return result;
}
}
solveAllwithin the constructor. They simply want to see that you understand the code, and the fact that you manage to figure out that what you need to do is to create twoMathFunctionimplementations and store them in the list so that they can be used at a later time by thesolveAllmethod. – Alderath Aug 21 '12 at 14:58integeris (to be) passed as parameter? – poitroae Aug 21 '12 at 19:27