Is it a good idea to use unicode symbols as Java identifiers?
Posted
by Eric
on Stack Overflow
See other posts from Stack Overflow
or by Eric
Published on 2010-05-08T11:01:41Z
Indexed on
2010/05/08
11:08 UTC
Read the original article
Hit count: 171
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?
© Stack Overflow or respective owner