Files
2nd/10_Wiki/Dev/Topic_CPP/CPP_Friend_Function.md
T
Antigravity Agent 1cfd3bbb56 docs(10_Wiki): 위키 구조 정리 — 언어 튜토리얼 카테고리 폴더 제거 + 신규 자산 동기화
Topic_CSS/Topic_HTML/Topic_JavaScript/Topic_Prompt/Topic_Comfyui 등 기존 카테고리 폴더를 정리하고,
Topic_Graphic/Dev 등 신규 산출물과 Topics 내부 세션/메모리 기록을 동기화.
2026-07-05 00:10:59 +09:00

3.9 KiB

id, title, category, status, verification_status, canonical_id, aliases, duplicate_of, source_trust_level, confidence_score, created_at, updated_at, review_reason, merge_history, tags, raw_sources, applied_in, github_commit
id title category status verification_status canonical_id aliases duplicate_of source_trust_level confidence_score created_at updated_at review_reason merge_history tags raw_sources applied_in github_commit
cpp-friend-function C++ The Friend Keyword Programming_Language draft conceptual
friend function
bypass encapsulation
C++ friend 키워드
B 0.86 2026-07-04 2026-07-04
cpp
programming-language
w3schools
oop
friend
encapsulation
https://www.w3schools.com/cpp/cpp_friend_function.asp

CPP The Friend Keyword

🎯 한 줄 통찰 (One-line insight)

A friend function is deliberately EXEMPT from the entire Encapsulation chapter's rule — it's NOT a member of the class at all, yet it can read private data directly with no getter method required, meaning friend is a language-level ESCAPE HATCH from encapsulation, granted explicitly and individually per-function rather than a general loophole, since each friend declaration must name exactly which external function gets the privilege. [S1]

🧠 핵심 개념 (Core concepts)

  • Friend function — a function that is NOT a member of the class, but is explicitly GRANTED access to the class's private members. [S1]
  • Declared inside, defined outside — the friend function's declaration lives INSIDE the class (marked with friend), but its actual body is written OUTSIDE the class like a normal function. [S1]
  • Bypasses the getter/setter requirement — unlike ordinary external code (which must use public getters/setters per the Encapsulation chapter), a friend function reads private members directly. [S1]

📖 세부 내용 (Details)

  • A friend function accessing a private attribute directly: class Employee { private: int salary; public: Employee(int s) { salary = s; } friend void displaySalary(Employee emp); }; void displaySalary(Employee emp) { cout << "Salary: " << emp.salary; } Employee myEmp(50000); displaySalary(myEmp);displaySalary isn't a class member but reads emp.salary directly. [S1]

⚖️ 모순 및 업데이트 (Contradictions & updates)

  • friend는 캡슐화 규칙의 예외: 일반적으로 private 멤버는 public 게터/세터로만 접근해야 하지만, friend로 선언된 함수는 클래스의 멤버가 아님에도 private 데이터를 직접 읽을 수 있다는 점에서 캡슐화 원칙의 명시적 예외임이 확인됨. [S1]

🛠️ 적용 사례 (Applied in summary)

Employee의 private 급여(salary)를 friend 함수 displaySalary()가 게터 없이 직접 출력하는 예제가 friend 키워드의 대표 실전 활용 사례로 원문에 직접 제시됨. [S1]

💻 코드 패턴 (Code patterns)

A friend function reading a private member directly, with no getter needed (C++):

class Employee {
private:
  int salary;
public:
  Employee(int s) { salary = s; }
  friend void displaySalary(Employee emp); // friend declaration
};
void displaySalary(Employee emp) { // defined outside, not a member
  cout << "Salary: " << emp.salary; // direct access to private data
}

검증 상태 및 신뢰도

  • 상태: draft
  • 검증 단계: conceptual
  • 출처 신뢰도: B (W3Schools — widely used educational reference, not a primary standards body)
  • 신뢰 점수: 0.86
  • 중복 검사 결과: 신규 생성 (New discovery)

🔗 지식 그래프 (Knowledge Graph)

📚 출처 (Sources)

📝 변경 이력 (Change history)

  • 2026-07-04: Initial draft synthesized from the W3Schools "C++ The Friend Keyword" page (Astra wiki-curation, P-Reinforce v3.1 format).