인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

makumpa8329's profile image
makumpa8329

asked

C# and Unity, Getting Started with Real Games (Author's Lecture)

4.3 Collection

Peek에 대해서 질문드립니다.

Written on

·

335

0

이번 강의 마지막에 Stack에 Peek을 하시면 이렇게 하면 a가 나올 것이다. 라고 말씀하셨는데 실제론 c가 떠서 조금 헷갈립니다.

Peek이 {1, 2, 3} 배열이 있으면 가장 첫번째 걸 뽑아서 확인하는 건 줄 알았는데 c가 뜨니까 정확한 용도를 모르겠네요.

unityC#

Answer 1

0

대신 답변 드리면,
queue는 {1,2,3}중 1을 뽑아내구요(FIFO)
stack은 {1,2,3}중 3을 뽑아냅니다.(LIFO)

makumpa8329's profile image
makumpa8329

asked

Ask a question