Is it a good idea to use unicode symbols as Java identifiers?
- by Eric
I have a snippet of code that looks like this:
double ?t = lastPollTime - pollTime;
double a = 1 - Math.exp(-?t / t);
average += a * (x - average);
Just how bad an idea is it to use unicode characters in Java identifiers? Or is this perfectly acceptable?