// Dart语言const关键字
void main() {
final v1 = 12;
const v2 = 13;
const v3 = 14;
v2 = 12;
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266105.html
// Dart语言const关键字
void main() {
final v1 = 12;
const v2 = 13;
const v3 = 14;
v2 = 12;
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266105.html