관리 메뉴

Jerry

#2. resolve 본문

CS/Terminology

#2. resolve

juicyjerry 2020. 11. 29. 00:35
반응형

it means when you find out the answer, or find a resolution

like you can resolve a crossword (find all the clues) or resolve a crime (find out who did it), or resolve a mathematical sum (3x+1=7)

so in programming terms it means when you use some information to discover some other information - so not as simple as $x * $y but rather for instance when one variable points to another variable which in turn represents some sort of service.

 

-> 이 뜻은 네가 답을 찾았거나 해결책을 찾았을 경우를 뜻하는데, 예를 들어 "십자 말풀이을 해결 했다" 혹은 "범죄를 해결했다" 혹은 

"수학 문제를 해결했다" 등이 있다.

 

프로그래밍 용어로 이 말 뜻은 $x * $y 같이 간단한 것 말고, 예를 들어 한 변수가 어떤 종류의 서비스를 나타내는 다른 변수를 가리키는 다른 정보를 발견하기 위해 어떤 정보를 사용하는 것을 의미한다.

 

ex)

After hitting the URL, the first thing that needs to happen is to resolve IP address associated with the domain name.

-> URL를 치고 난 후, 일어날 일을 위해 필요한 첫 번째는 도메인 이름과 관련있는 IP 주소를 확인하는 것이다.

 

Source
laracasts.com/discuss/channels/laravel/what-does-the-word-resolve-mean
Example from 
www.freecodecamp.org/news/what-happens-when-you-hit-url-in-your-browser/



어떻게 우리말로 해석을 해야할지 잘 모르겠네요.. 

구글링해도 안 나오고.. 
혹시 아시는 분은 댓글로 남겨주세요 :)

반응형

'CS > Terminology' 카테고리의 다른 글

#6. 상대 경로와 절대 경로  (0) 2020.12.16
#5. 동기화  (0) 2020.12.16
#4. Error의 종류  (0) 2020.11.29
#3. 프로그램을 BUILD 하는 과정  (0) 2020.11.29
#1. Server-side  (0) 2020.11.28