On 26.6.2011 23:21, cowwoc wrote:
we should really be using isWhitespace(int) because it is
newer/better. In general you're supposed to ignore the methods that
take a char parameter.
I don't understand what you mean.
Recent Jdk 1.6 returns the following
Character.isSpaceChar(' ') -> true
Character.isSpaceChar((int) ' ') -> true
Character.isWhitespace(' ') -> false
Character.isWhitespace((int) ' ') -> false
So to me there seems to be no difference between char and int methods.
(Note: The argument character is a nbsp.)
- rami
--
You received this message because you are subscribed to the Google Groups "H2
Database" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/h2-database?hl=en.