1

其他人在 Dart vm 中有这个问题吗?出了什么问题?

import 'dart:math' as math;

void main() {
  print ( math.pow( 2, 60 ) ); // -> 1152921504606846976
  print ( math.pow( 2, 61 ) ); // -> 2305843009213693952
  print ( math.pow( 2, 62 ) ); // -> -4611686018427387904
  print ( math.pow( 2, 63 ) ); // -> -9223372036854775808
  print ( math.pow( 2, 64 ) ); // -> 18446744073709551616
}
4

1 回答 1

3

Math.pow 和大量数字中有一个错误:https ://code.google.com/p/dart/issues/detail?id=8259

约翰

于 2013-02-01T01:54:34.000 回答