인프런 커뮤니티 질문&답변

차태관님의 프로필 이미지
차태관

작성한 질문수

이득우의 언리얼 프로그래밍 Part1 - 언리얼 C++의 이해

11강 언리얼 컨테이너 라이브러리 II - 구조체와 Map

46:35 friend 키워드

해결된 질문

작성

·

255

0

안녕하세요, 이해가 잘 안 가는 부분이 있습니다.

46:35 쯤 friend 키워드를 사용해서 gettypehash 함수를 안쪽에 선언한다고 말씀 하셨습니다.

 

구조체는 기본적으로 전역이기 때문에

friend를 선언하면 구조체의 멤버 함수였던 gettypehash 함수가 구조체 변수에 접근이 가능하면서 전역으로 사용이 가능한 전역 함수가 된다고 이해하면 되는지 궁금합니다.

답변 1

0

이득우님의 프로필 이미지
이득우
지식공유자

네 강의에서 자주 문의주는 내용인데요, C++에서 friend 멤버 함수는 클래스의 함수로 취급되지 않고 전역으로 간주됩니다.

A friend function is a function that isn't a member of a class but has access to the class's private and protected members. Friend functions aren't considered class members; they're normal external functions that are given special access privileges. Friends aren't in the class's scope, and they aren't called using the member-selection operators
https://learn.microsoft.com/en-us/cpp/cpp/friend-cpp?view=msvc-170

차태관님의 프로필 이미지
차태관

작성한 질문수

질문하기