i am new to java, trying to write my first app - calculator - on my own. Tried searching around, but couldn't find anything similar. Could it be done through ASCII or bytes? To simplify what i want to know i give the following example:
char ch = '+';
int i = 1 ch 2;
int = 3;
I want to somehow convert char + to an actual + sign for int calculation to work. Is it possible? Thank you in advance!