What is the size of an integer variable in Dart
问题 In Dart site they said that the integer size is 64 bit , is this the max size of an integer, or this is the size of any integer even if the integer is a small number such as 12? If every integer size is 64 bit , does this affect the performance of the application? 回答1: The answer is: "It depends". First of all, if you compile Dart to JavaScript, all numbers are JavaScript numbers, which means Dart double s. Even the integers, they just happen to be non-fractional doubles. That means that you