Difference between revisions of "Deprecation"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(External links)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
'''Deprecation''' is:
 
'''Deprecation''' is:
  
* The discouragement of use of some feature, design or practicem typically because it has been superseded or is no longer considered safe
+
* The discouragement of use of some feature, design or practice, typically because it has been superseded or is no longer considered safe
  
 
* Without (at least for the time being) removing it from the system of which it is a part  
 
* Without (at least for the time being) removing it from the system of which it is a part  
Line 11: Line 11:
 
While a deprecated software feature remains in the software, its use may raise warning messages recommending alternative practices.
 
While a deprecated software feature remains in the software, its use may raise warning messages recommending alternative practices.
  
Ceprecated status may also indicate the feature will be removed in the future.
+
Deprecated status may also indicate the feature will be removed in the future.
  
 
Features are deprecated rather than immediately removed, to provide [[backward compatibility]] and give programmers time to bring affected code into compliance with the new standard.
 
Features are deprecated rather than immediately removed, to provide [[backward compatibility]] and give programmers time to bring affected code into compliance with the new standard.
Line 22: Line 22:
  
 
* [https://en.wikipedia.org/wiki/Deprecation Deprecation] @ Wikipedia
 
* [https://en.wikipedia.org/wiki/Deprecation Deprecation] @ Wikipedia
 +
.
 +
[[Category:Computing]]
 +
[[Category:Design]]
 +
[[Category:Software]]
 +
[[Category:Software development]]
 +
[[Category:Web design and development]]

Latest revision as of 07:08, 21 April 2016

Deprecation is:

  • The discouragement of use of some feature, design or practice, typically because it has been superseded or is no longer considered safe
  • Without (at least for the time being) removing it from the system of which it is a part
  • And without prohibiting its use

Software depredation

While a deprecated software feature remains in the software, its use may raise warning messages recommending alternative practices.

Deprecated status may also indicate the feature will be removed in the future.

Features are deprecated rather than immediately removed, to provide backward compatibility and give programmers time to bring affected code into compliance with the new standard.

See also

External links

.