Name: swC45995 Date: 10/07/96
In Windows the minimum double value differs from that prescribed by the
Java Language Specification (see #3.10.2). The permitted literal has the
value which is greater than the required 4.94065645841246544e-324. Thus
compilation of the following test:
public class test
{
public static void main(String argv[])
{
double d = 4.94065645841246544e-324;
}
}
produces compile-time errors in Windows while completes successfully in
Solaris.
======================================================================