How to annotate deprecation of a class in Java?

后端 未结 4 898
难免孤独
难免孤独 2020-12-11 01:33

I am going to deprecate a class in Java.

@Deprecated
class deprecatedClass

and I have list of this deprecated class,

List&         


        
4条回答
  •  再見小時候
    2020-12-11 02:17

    You only need to add the deprecation message to the declaration of anything you are deprecating. It serves as a warning that people should avoid an implementation which uses the deprecated class, such as in List.

提交回复
热议问题