我在网上搜索过,我发现了这个:
To make the compiler warn you of the
details of which methods you used that
were deprecated use thejavac.exe
-deprecation
switch. Then look in the Javadoc for the deprecated methods to
find out the recommended replacements.
Sometimes you just have to rename.
Sometimes the replacements work quite
differently.
但我真的不明白它是如何工作的,任何人都可以帮助我吗?
解决方法:
方法弃用是为了警告程序员该方法目前不是最适合所需功能的方法.它是通过使用@deprecated javadoc注释完成的.当你对javac使用-deprecated标志时,它只是告诉javac在看到这些javadoc注释时发出警告.它告诉您使用弃用方法的行号以及不推荐使用的方法的名称.
从那里开始,您可以在Sun(甲骨文)网站上查看JDK的javadoc,了解获取所需功能的建议.有时,替换涉及进行多个方法调用,而过去只需要进行一次调用.通常,文档很好地为您提供示例,并指出您在有新的工作方式时正确的方向.