What is the difference between the “const” and “final” keywords in Dart?

前端 未结 11 1332
温柔的废话
温柔的废话 2020-11-27 10:52

What is the difference between const and final keyword in Dart?

11条回答
  •  盖世英雄少女心
    2020-11-27 11:17

    If you are coming from C++ then const in Dart is constexpr in C++ and final in Dart is const in C++.

    The above applies to primitive types only. However in Dart objects marked final are mutable in terms of it's members.

提交回复
热议问题