Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
909 views
in Technique[技术] by (71.8m points)

dart - Why 2.0 (the number 2.0) is double and int at the same time?

I just started to learn Dart and came across the below code

main(){
  print(2.0 is int);
  print(2.0 is double);
  print(int is double);
}

It produces the below output

true
true
false

I am not sure why the above output is generated. The above output suggests that all integers can be treated as doubles.

Am I missing something obvious here. Any pointers would help. Thanks.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can only get this result if you run the code in the browser.

The browser does not distinguish between int and double, and knows only double, and therefore Dart also can not distinguish between them when compiled to JS.

Theoretically it would be possible but the performance penalty for using a custom type to maintain the integer properties would be prohibitively high.

See also https://webdev.dartlang.org/faq#q-how-are-integers-handled-when-compiled-to-javascript


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...