We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
func greeting(_ friend: Int, _ me: Int) -> Int { // 파라미터 2개는 스택에 할당 let result = friend + me // 지역변수 result는 스택에 할당 return result }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
들어가기 앞서 Heap과 Stack
Heap
Stack
Heap vs Stack
ARC?
ARC의 메모리 관리 방법
RC(Reference Counting)
Count Up
Count Down
참고자료
The text was updated successfully, but these errors were encountered: