버튼 수집상

[메모] obsolete vs deprecated 본문

TIL - 메모

[메모] obsolete vs deprecated

cocokaribou 2022. 11. 14. 11:04

안드로이드 소스코드에서 심심찮게 보이는 가로줄과 @Derpecated 어노테이션.

이 함수는 더 이상 쓰지 말아라- 정도의 의미로 알고 팀원끼리도 '디프리케이티드' 라고 부르면서 작업했다.

문득 그 뜻이 제대로 궁금해서 검색.

 

원문

 

What is the difference between obsolete and deprecate in computer science?

Given the two terms "obsolete" and "deprecate" in computer science, what is the difference between them? What I understand, Deprecated means still available for use but will no longer be develope...

english.stackexchange.com

'obsolete' 와 'deprecated'의 차이점

 

deprecated obsolete
기대하는대로 작동할 수는 있으나 곧 사라질 예정
it may still work as expected, but will vanish soon

참고용 표시 more or less a 'marker'

더이상 기대하는대로 작동하지 않거나, 아무런 동작을 하지 않음
it no longer works as expected or doesn't do anything at all
점점 안 씀 "fading" 사용하지 말 것 "do not use"

 

-> bleeding edge 프론트엔드 코드는 n개월 뒤 바로 obsolete 해지는 게 아니라 deprecated 되는 것.

다른 새로운 것을 사용하도록 권장됨, 이라는 의미로써.

 

순서는 보통 이렇다.

deprecated => obsolete

728x90