java - have a char reference an object in an array -
is possible have char point object in array? im trying have characters : +,-,*,/ point index in array. i aware section below not correct syntax. way of describing wish accomplish. public static void main(string[] args) { operations plus; operations minus; operations multiply; operations divide; /**********create jumptable*******************/ operations[] jumptable = new operations[255]; /**********add object jumptable************/ jumptable[0] = new addition(); jumptable[1] = new subtraction(); jumptable[2] = new multiplication(); jumptable[3] = new division(); /**********point index in table************/ plus = jumptable[0]; minus = jumptable[1]; multiply = jumptable[2]; divide = jumptable[3]; //this im trying do: //*************************************** char +; char -; '+' = ...