Is it possible to have a char point to an object in an array? im trying to have the characters : +,-,*,/ point to an index in my array.
I AM WELL AWARE MY SECTION BELOW IS NOT CORRECT SYNTAX. its just my way of describing what i wish to accomplish.
public static void main(String[] args) {
Operations plus;
Operations minus;
Operations multiply;
Operations divide;
/**********Create jumpTable*******************/
Operations[] jumpTable = new Operations[255];
/**********Add Object to jumpTable************/
jumpTable[0] = new Addition();
jumpTable[1] = new Subtraction();
jumpTable[2] = new Multiplication();
jumpTable[3] = new Division();
/**********Point to index in table************/
plus = jumpTable[0];
minus = jumpTable[1];
multiply = jumpTable[2];
divide = jumpTable[3];
//this is what im trying to do:
//***************************************
char +;
char -;
'+' = plus
'-' = minus and etc...
//****************************************
double x = Double.parseDouble(args[0]);
double y = Double.parseDouble(args[1]);
System.out.printf("%f %s %f = %f%n", x, op, y, op.Compute(x, y));
}
}
Operationmay be more fitting than the pluralOperationsfor this type. – Paŭlo Ebermann Feb 26 '11 at 0:45