0 1 2 3 4 5 6 7 8 9 . -
has the "numeric" attribute.
When the parser encounters a word token that has the format of a double precision floating-point number, it treats the token as a number rather than a word, by setting the ttype
field to the value TT_NUMBER
and putting the numeric value of the token into the nval
field.
@see java.io.StreamTokenizer#nval
@see java.io.StreamTokenizer#TT_NUMBER
@see java.io.StreamTokenizer#ttype
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|