美文网首页Flutter
Flutter废弃方法标注--@Deprecated

Flutter废弃方法标注--@Deprecated

作者: HawkFlying | 来源:发表于2020-07-16 18:10 被阅读0次

描述

在版本迭代中,会产生废弃的方法,废弃的方法可以使用@Deprecated标注,以提醒开发人员使用更好的方法

使用

使用@Deprecated标注废弃的方法,如下:

 @Deprecated('Use `testUpgrade()` method instead')
  void test(){
    ...
  }

在IDE中,废弃方法会被加上删除线,鼠标放在上面会有废弃说明提示语,效果如下:


效果.png

相关文章

网友评论

    本文标题:Flutter废弃方法标注--@Deprecated

    本文链接:https://www.haomeiwen.com/subject/splmhktx.html