What is the max value of integer in dart?

后端 未结 2 1896
猫巷女王i
猫巷女王i 2021-02-20 05:42

I have looked everywhere but I couldnt find any information related to this topic. Also, Is there a java - like Long / BigDecimal datatype in dart?

2条回答
  •  猫巷女王i
    2021-02-20 06:14

    That depends if you are running in the Dart VM or compiling to JavaScript.

    On the Dart VM an int is arbitrary precision and has no limit.

    When compiling to JavaScript you are actually using floating point numbers, since that is all that JavaScript supports. This means you are restricted to representing integers within the range -253 to 253

提交回复
热议问题