When are API methods marked "deprecated" actually going to go away? - Stack Overflow most recent 30 from stackoverflow.com2009-11-24T18:09:42Zhttp://stackoverflow.com/feeds/question/314540http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/314540/when-are-api-methods-marked-deprecated-actually-going-to-go-away9When are API methods marked "deprecated" actually going to go away?Paul Tomblin2008-11-24T15:48:52Z2008-11-24T21:47:50Z
<p>I'm code reviewing a change one of my co-workers just did, and he added a bunch of calls to Date.toMonth(), Date.toYear() and other deprecated Date methods. All these methods were deprecated in JDK 1.1, but he insists that it's ok to use them because they haven't gone away yet (we're using JDK 1.5) and I'm saying they might go away any day now and he should use Calendar methods. Has Sun actually said when these things are going away, or does "@deprecated" just mean you lose style points?</p>
http://stackoverflow.com/questions/314540/when-are-api-methods-marked-deprecated-actually-going-to-go-away/314542#3145428Answer by Alex Miller for When are API methods marked "deprecated" actually going to go away?Alex Miller2008-11-24T15:49:54Z2008-11-24T15:49:54Z<p>They're not going away. That said, they're usually deprecated because a) they're dangerous ala Thread.stop(), or b) there is a better or at least more accepted way to do it. Usually deprecated method javadoc will give you a hint as to the better way. In your case, Calendar is the recommended way to do this.</p>
<p>While it's conceivable that they will be removed at some point in the future, I wouldn't bet on it. If anyone ever forks Java however, they'll probably be the first thing to go... </p>
http://stackoverflow.com/questions/314540/when-are-api-methods-marked-deprecated-actually-going-to-go-away/314545#3145451Answer by David for When are API methods marked "deprecated" actually going to go away?David2008-11-24T15:52:17Z2008-11-24T15:52:17Z<p>If the deprecated methods went away, they could break existing code.</p>
<p>While maintaining a clean API is important, the deprecated methods aren't getting in anyone's way. Sure, there are now better ways to do things, so new methods replace old ones. But there wouldn't be any gain made (besides a cleaner API) by getting rid of the old ones.</p>
<p>Think of "deprecated" as meaning "outdated", but not necessarily "on the chopping block". </p>
http://stackoverflow.com/questions/314540/when-are-api-methods-marked-deprecated-actually-going-to-go-away/314552#3145522Answer by Brett McCann for When are API methods marked "deprecated" actually going to go away?Brett McCann2008-11-24T15:54:31Z2008-11-24T15:54:31Z<p>Well, "not gone yet" and "never going away" are two very different things. Thats the whole point of deprecation. They can go away with any future release. Using them is an at your own risk proposition. Just be aware that some future release of the JDK may leave your code in an unusable state.</p>
http://stackoverflow.com/questions/314540/when-are-api-methods-marked-deprecated-actually-going-to-go-away/314568#3145682Answer by Rich for When are API methods marked "deprecated" actually going to go away?Rich2008-11-24T15:57:42Z2008-11-24T15:57:42Z<p>Deprecated features features that are superseded and should be avoided. Although they remain in the JDK, they are discouraged as there are better methods available. The methods are left in the API to support backward compatibility, but should generally be avoided as they could be removed in future versions of the API.</p>
<p>It is technically ok to use deprecated methods, but generally the reason it was deprecated in the first place was that a better/faster/cleaner API has been developed.</p>
http://stackoverflow.com/questions/314540/when-are-api-methods-marked-deprecated-actually-going-to-go-away/314569#3145691Answer by Adrian for When are API methods marked "deprecated" actually going to go away?Adrian2008-11-24T15:58:02Z2008-11-24T15:58:02Z<p>Sun tend to be extremely paranoid when it comes to changes that impact backwards compatibility, so I wouldn't expect to see the methods go away any time soon.</p>
<p>But deprecated methods <strong>could</strong> go away at any time in the future, and are normally deprecated for a reason - either because they're unreliable, because they have unpleasant side effects, or simply because there's a better or more elegant way of doing things. The JavaDoc for the method will normally detail which of these is the case and what the acceptable way of carrying out the same operation is these days. Quite frequently the deprecated method will have been replaced with an implementation that calls the 'correct' method anyway, so you're just adding a level of indirection anyway.</p>
<p>You'll also have plenty of compilation warnings if you use these methods, which could be reason enough to avoid them in itself...</p>
http://stackoverflow.com/questions/314540/when-are-api-methods-marked-deprecated-actually-going-to-go-away/314577#31457714Answer by VonC for When are API methods marked "deprecated" actually going to go away?VonC2008-11-24T15:59:54Z2008-11-24T16:05:17Z<p>Regarding the APIs, ... it is not specified they will be removed anytime soon.</p>
<p><a href="http://java.sun.com/j2se/1.5.0/compatibility.html" rel="nofollow">Incompatibilities in J2SE 5.0 (since 1.4.2)</a>:</p>
<p>Source Compatibility</p>
<blockquote>
<p>[...]<br />
In general, the policy is as follows, except for any incompatibilities listed further below: </p>
<p>Deprecated APIs are interfaces that are supported only for backwards compatibility. The javac compiler generates a warning message whenever one of these is used, unless the -nowarn command-line option is used. It is recommended that programs be modified to eliminate the use of deprecated APIs, <strong>though there are no current plans to remove such APIs</strong> – with the exception of JVMDI and JVMPI – entirely from the system.</p>
</blockquote>
<p>Even in its <a href="http://java.sun.com/javase/6/docs/technotes/guides/javadoc/deprecation/deprecation.html" rel="nofollow">How and When To Deprecate APIs</a>, nothing is being said about a policy regarding actually <em>removing</em> the deprected APIs...</p>
http://stackoverflow.com/questions/314540/when-are-api-methods-marked-deprecated-actually-going-to-go-away/314579#3145791Answer by warren for When are API methods marked "deprecated" actually going to go away?warren2008-11-24T16:02:00Z2008-11-24T16:02:00Z<p>I've definitely seen deprecated functions go away - from old versions of Java to the current (I started on 1.1, and some stuff distinctly DID NOT WORK in 1.4).</p>
<p>Other languages handle deprecation differently - Python has been known in the past, for example, to remove deprecated functionality after just a release or two.</p>
http://stackoverflow.com/questions/314540/when-are-api-methods-marked-deprecated-actually-going-to-go-away/314585#3145855Answer by Eric Burke for When are API methods marked "deprecated" actually going to go away?Eric Burke2008-11-24T16:03:01Z2008-11-24T16:03:01Z<p>One problem is you'll see lots of compiler warnings about using deprecated methods. If you also use deprecations to gradually phase out your own code, the compiler warnings will get lost in the noise and lose significance.</p>
http://stackoverflow.com/questions/314540/when-are-api-methods-marked-deprecated-actually-going-to-go-away/315617#3156171Answer by pixelmonkey for When are API methods marked "deprecated" actually going to go away?pixelmonkey2008-11-24T21:47:50Z2008-11-24T21:47:50Z<p>I have a better recommendation: rather than telling him to use <code>Calendar</code>, you should switch to either <a href="http://joda-time.sourceforge.net/" rel="nofollow">JodaTime</a> or <a href="https://jsr-310.dev.java.net/nonav/doc-2008-08-04/index.html" rel="nofollow">JSR-310</a>'s pre-release version. Some methods on <code>java.util.Date</code> may be deprecated, but in my opinion the whole class should be deprecated, along with <code>Calendar</code>. The developers of JSR-310 seem to agree, although I doubt they'll ever bite the bullet and deprecate it.</p>
<p>In no particular order, here's what's wrong with <code>Date</code>:</p>
<ul>
<li><p>Its internal representation is milliseconds since the epoch; therefore, cannot represent dates before the epoch.</p></li>
<li><p>All of its useful methods (e.g. <code>toString</code>) first normalize the date according to the local timezone. When working with UTC <code>Date</code> instances, this can get <em>really</em> annoying; you're forced to use <code>Calendar</code> or you will make very bad errors.</p></li>
<li><p><code>Calendar</code>. It just stinks. Might win the award for worst API ever.</p></li>
<li><p>Always represents an <em>instant-in-time</em>. No way to represent specific days, or specific years. No way to represent timezone-less dates values.</p></li>
<li><p>Has almost no useful methods. See e.g. JodaTime's fluent interface for doing date arithmetic.</p></li>
<li><p>Should have been named <code>Datetime</code>, considering that it is one.</p></li>
</ul>