...
Info | ||
---|---|---|
| ||
|
Note | ||
---|---|---|
| ||
In some circumstances, APL and Java are handling numeric values differently. APL may be automatically expanded to avoid overflow, this applies also to constant expressions. Example 1: A statement like: long x=1000000000000; is ok in APL, but will not compile in Java. Example 2: An expression like: long x=1000000*1000000; This works as expected in APL, but in Java would assign to x the value -727379968 due to overflow. |