You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think it could be useful to mention one more thing:
classA {}
classA1extendsA {}
classA2extendsA {}
voidmain() {
List<A> list =<A>[];
list =<A1>[]; // `list.runtimeType == List<A1>`, static type still `List<A>`.
list.add(A2()); // Accepted at compile time due to covariance, throws at run time.
}
The reason why list is not promoted at list = <A1>[] is that List<A1> is not a 'type of interest' for list at that point (or ever, in fact), and an assignment will only promote to a type of interest.
You can make a type a type of interest by checking for it:
void main() {
List<A> list = <A>[];
if (list is! List<A1>) list = <A1>[]; // Promote `list` to `List<A1>`.
list.add(A2()); // Compile-time error.
}
code:
when run

The text was updated successfully, but these errors were encountered: