ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
INSTRUCTOR
HUMA RASHID
INSTRUCTOR
HUMA RASHID
FRIEND FUNCTIONS
Friend functions of an object can "see" inside the
object and access private member functions and
data.
To declare a function as a friend of a class,
precede the function prototype in the
class definition with the keyword friend.
WHEN
NEEDED?
Friend Function Computer Programming.pdf
class rectangle {
friend void set_value(rectangle&, float); // friend declaration
private:
float height;
float width;
int xpos;
int ypos;
public:
rectangle(float, float); // constructor
void draw(); // draw member function
void posn(int, int); // position member function
void move(int, int); // move member function
float get_height(); // access function
void set_height(float); // access function
};
void set_value(rectangle &rc, float h)
{
rc.height = h;
}
void main()
{
rectangle rc(1.0, 3.0);
set_value(rc, 10.0);
}
Friend Function Computer Programming.pdf
Friend Function Computer Programming.pdf
Friend Function Computer Programming.pdf
Friend Function Computer Programming.pdf
FRIEND FUNCTION PROGRAM EXERCISE
ï‚¡ Write a class complex that has two private attributes one for storing real part and
other for imaginary part. SetNumber function to set the real part and imaginary part.
PrintNumber function to display them on screen.
ï‚¡ Write a function to calculate Sum of two complex numbers(Hint: use friend function
)
2 + 3i
3 + 7i
--------------
5 + 10i
FRIEND CLASS PROGRAM EXERCISE
ï‚¡ Modify the program you have written for last exercise. Introduce a class
calculator that adds real part of complex number in a function and
return int. Similar function for sum of imaginary part. Make the class
friend of class complex.

More Related Content

Similar to Friend Function Computer Programming.pdf (20)

Classes and objects1
Classes and objects1Classes and objects1
Classes and objects1
Vineeta Garg
Ìý
Chapter 13 introduction to classes
Chapter 13 introduction to classesChapter 13 introduction to classes
Chapter 13 introduction to classes
rsnyder3601
Ìý
02.adt
02.adt02.adt
02.adt
Aditya Asmara
Ìý
Data members and member functions
Data members and member functionsData members and member functions
Data members and member functions
Marlom46
Ìý
3 functions and class
3   functions and class3   functions and class
3 functions and class
trixiacruz
Ìý
chapter-7-classes-and-objects.pdf
chapter-7-classes-and-objects.pdfchapter-7-classes-and-objects.pdf
chapter-7-classes-and-objects.pdf
study material
Ìý
Chapter 2 OOP using C++ (Introduction).pptx
Chapter 2 OOP using C++ (Introduction).pptxChapter 2 OOP using C++ (Introduction).pptx
Chapter 2 OOP using C++ (Introduction).pptx
FiraolGadissa
Ìý
Object Oriented Programming using C++: Ch11 Virtual Functions.pptx
Object Oriented Programming using C++: Ch11 Virtual Functions.pptxObject Oriented Programming using C++: Ch11 Virtual Functions.pptx
Object Oriented Programming using C++: Ch11 Virtual Functions.pptx
RashidFaridChishti
Ìý
Classes, objects and methods
Classes, objects and methodsClasses, objects and methods
Classes, objects and methods
farhan amjad
Ìý
CSharp presentation and software developement
CSharp presentation and software developementCSharp presentation and software developement
CSharp presentation and software developement
frwebhelp
Ìý
CLASSES, STRUCTURE,UNION in C++
CLASSES, STRUCTURE,UNION in C++CLASSES, STRUCTURE,UNION in C++
CLASSES, STRUCTURE,UNION in C++
Prof Ansari
Ìý
oop lecture 3
oop lecture 3oop lecture 3
oop lecture 3
Atif Khan
Ìý
Object and class presentation
Object and class presentationObject and class presentation
Object and class presentation
nafisa rahman
Ìý
Classes & objects new
Classes & objects newClasses & objects new
Classes & objects new
lykado0dles
Ìý
+2 CS class and objects
+2 CS class and objects+2 CS class and objects
+2 CS class and objects
khaliledapal
Ìý
Functions in C++
Functions in C++Functions in C++
Functions in C++
Pranali Chaudhari
Ìý
C++ Object Oriented Programming Lecture ºÝºÝߣs for Students
C++ Object Oriented Programming Lecture ºÝºÝߣs for StudentsC++ Object Oriented Programming Lecture ºÝºÝߣs for Students
C++ Object Oriented Programming Lecture ºÝºÝߣs for Students
MuhammadAli224595
Ìý
3. Polymorphism.pptx
3. Polymorphism.pptx3. Polymorphism.pptx
3. Polymorphism.pptx
ChhaviCoachingCenter
Ìý
Unit vi(dsc++)
Unit vi(dsc++)Unit vi(dsc++)
Unit vi(dsc++)
Durga Devi
Ìý
Overloading
OverloadingOverloading
Overloading
poonamchopra7975
Ìý
Classes and objects1
Classes and objects1Classes and objects1
Classes and objects1
Vineeta Garg
Ìý
Chapter 13 introduction to classes
Chapter 13 introduction to classesChapter 13 introduction to classes
Chapter 13 introduction to classes
rsnyder3601
Ìý
Data members and member functions
Data members and member functionsData members and member functions
Data members and member functions
Marlom46
Ìý
3 functions and class
3   functions and class3   functions and class
3 functions and class
trixiacruz
Ìý
chapter-7-classes-and-objects.pdf
chapter-7-classes-and-objects.pdfchapter-7-classes-and-objects.pdf
chapter-7-classes-and-objects.pdf
study material
Ìý
Chapter 2 OOP using C++ (Introduction).pptx
Chapter 2 OOP using C++ (Introduction).pptxChapter 2 OOP using C++ (Introduction).pptx
Chapter 2 OOP using C++ (Introduction).pptx
FiraolGadissa
Ìý
Object Oriented Programming using C++: Ch11 Virtual Functions.pptx
Object Oriented Programming using C++: Ch11 Virtual Functions.pptxObject Oriented Programming using C++: Ch11 Virtual Functions.pptx
Object Oriented Programming using C++: Ch11 Virtual Functions.pptx
RashidFaridChishti
Ìý
Classes, objects and methods
Classes, objects and methodsClasses, objects and methods
Classes, objects and methods
farhan amjad
Ìý
CSharp presentation and software developement
CSharp presentation and software developementCSharp presentation and software developement
CSharp presentation and software developement
frwebhelp
Ìý
CLASSES, STRUCTURE,UNION in C++
CLASSES, STRUCTURE,UNION in C++CLASSES, STRUCTURE,UNION in C++
CLASSES, STRUCTURE,UNION in C++
Prof Ansari
Ìý
oop lecture 3
oop lecture 3oop lecture 3
oop lecture 3
Atif Khan
Ìý
Object and class presentation
Object and class presentationObject and class presentation
Object and class presentation
nafisa rahman
Ìý
Classes & objects new
Classes & objects newClasses & objects new
Classes & objects new
lykado0dles
Ìý
+2 CS class and objects
+2 CS class and objects+2 CS class and objects
+2 CS class and objects
khaliledapal
Ìý
C++ Object Oriented Programming Lecture ºÝºÝߣs for Students
C++ Object Oriented Programming Lecture ºÝºÝߣs for StudentsC++ Object Oriented Programming Lecture ºÝºÝߣs for Students
C++ Object Oriented Programming Lecture ºÝºÝߣs for Students
MuhammadAli224595
Ìý
Unit vi(dsc++)
Unit vi(dsc++)Unit vi(dsc++)
Unit vi(dsc++)
Durga Devi
Ìý

Recently uploaded (20)

Digital Marketing Canvas for Charlotte Hornets
Digital Marketing Canvas for Charlotte HornetsDigital Marketing Canvas for Charlotte Hornets
Digital Marketing Canvas for Charlotte Hornets
DylanLee69
Ìý
Big-O notations, Algorithm and complexity analaysis
Big-O notations, Algorithm and complexity analaysisBig-O notations, Algorithm and complexity analaysis
Big-O notations, Algorithm and complexity analaysis
drsomya2019
Ìý
AI system mimicking human expert decision-making..pptx
AI system mimicking human expert decision-making..pptxAI system mimicking human expert decision-making..pptx
AI system mimicking human expert decision-making..pptx
ritikacompscience
Ìý
[3] Storing and backup - AIESEC Session 2
[3] Storing and backup - AIESEC Session 2[3] Storing and backup - AIESEC Session 2
[3] Storing and backup - AIESEC Session 2
mohamedepankolo
Ìý
sterategicinformationsystem-250329162230-1990dc92.pptx
sterategicinformationsystem-250329162230-1990dc92.pptxsterategicinformationsystem-250329162230-1990dc92.pptx
sterategicinformationsystem-250329162230-1990dc92.pptx
EliasHaile7
Ìý
ARCH 2025: New Mexico Respite Provider Registry
ARCH 2025: New Mexico Respite Provider RegistryARCH 2025: New Mexico Respite Provider Registry
ARCH 2025: New Mexico Respite Provider Registry
Allen Shaw
Ìý
STS-PRELIM-2025.pptxtyyfddjugggfssghghihf
STS-PRELIM-2025.pptxtyyfddjugggfssghghihfSTS-PRELIM-2025.pptxtyyfddjugggfssghghihf
STS-PRELIM-2025.pptxtyyfddjugggfssghghihf
TristanEvasco
Ìý
FinanceGPT Labs Whitepaper - Risks of Large Quantitative Models in Financial ...
FinanceGPT Labs Whitepaper - Risks of Large Quantitative Models in Financial ...FinanceGPT Labs Whitepaper - Risks of Large Quantitative Models in Financial ...
FinanceGPT Labs Whitepaper - Risks of Large Quantitative Models in Financial ...
FinanceGPT Labs
Ìý
Sources of Data and Data collection methods.pptx
Sources of Data and Data collection methods.pptxSources of Data and Data collection methods.pptx
Sources of Data and Data collection methods.pptx
denniskhisa
Ìý
Data Management on AWS: from caos to centralized governance - 2025-03-26
Data Management on AWS: from caos to centralized governance - 2025-03-26Data Management on AWS: from caos to centralized governance - 2025-03-26
Data Management on AWS: from caos to centralized governance - 2025-03-26
Alessandra Bilardi
Ìý
data compression.ppt tree structure vector
data compression.ppt tree structure vectordata compression.ppt tree structure vector
data compression.ppt tree structure vector
vidhyaminnalveeran29
Ìý
Forecasting in AWS - 2025-01-25
Forecasting in AWS - 2025-01-25Forecasting in AWS - 2025-01-25
Forecasting in AWS - 2025-01-25
Alessandra Bilardi
Ìý
buiding web based land registration buiding web based land registration and m...
buiding web based land registration buiding web based land registration and m...buiding web based land registration buiding web based land registration and m...
buiding web based land registration buiding web based land registration and m...
habtamudele9
Ìý
How can Competitive Intelligence Platforms benefit a Business?
How can Competitive Intelligence Platforms benefit a Business?How can Competitive Intelligence Platforms benefit a Business?
How can Competitive Intelligence Platforms benefit a Business?
Contify
Ìý
cisco-and-splunk-innovation-through-the-power-of-integration.pdf
cisco-and-splunk-innovation-through-the-power-of-integration.pdfcisco-and-splunk-innovation-through-the-power-of-integration.pdf
cisco-and-splunk-innovation-through-the-power-of-integration.pdf
LonJames2
Ìý
Quantitative Presentation_Final.....pptx
Quantitative Presentation_Final.....pptxQuantitative Presentation_Final.....pptx
Quantitative Presentation_Final.....pptx
lenny lopez
Ìý
Drillingis_optimizedusingartificialneural.pptx
Drillingis_optimizedusingartificialneural.pptxDrillingis_optimizedusingartificialneural.pptx
Drillingis_optimizedusingartificialneural.pptx
singhsanjays2107
Ìý
GLOBAL-GOALS-LOCAL-ACTIONS-The-SDG-Journey-from-Vision-to-Reality.pptx
GLOBAL-GOALS-LOCAL-ACTIONS-The-SDG-Journey-from-Vision-to-Reality.pptxGLOBAL-GOALS-LOCAL-ACTIONS-The-SDG-Journey-from-Vision-to-Reality.pptx
GLOBAL-GOALS-LOCAL-ACTIONS-The-SDG-Journey-from-Vision-to-Reality.pptx
KunalBhadana3
Ìý
Predicting-Training-Needs-with-Machine-Learning.pptx
Predicting-Training-Needs-with-Machine-Learning.pptxPredicting-Training-Needs-with-Machine-Learning.pptx
Predicting-Training-Needs-with-Machine-Learning.pptx
Access Business Management Conferencing International
Ìý
Lecture 2-DATABASE MODELS lecture 2.pptx
Lecture 2-DATABASE MODELS lecture 2.pptxLecture 2-DATABASE MODELS lecture 2.pptx
Lecture 2-DATABASE MODELS lecture 2.pptx
elvis24mutura
Ìý
Digital Marketing Canvas for Charlotte Hornets
Digital Marketing Canvas for Charlotte HornetsDigital Marketing Canvas for Charlotte Hornets
Digital Marketing Canvas for Charlotte Hornets
DylanLee69
Ìý
Big-O notations, Algorithm and complexity analaysis
Big-O notations, Algorithm and complexity analaysisBig-O notations, Algorithm and complexity analaysis
Big-O notations, Algorithm and complexity analaysis
drsomya2019
Ìý
AI system mimicking human expert decision-making..pptx
AI system mimicking human expert decision-making..pptxAI system mimicking human expert decision-making..pptx
AI system mimicking human expert decision-making..pptx
ritikacompscience
Ìý
[3] Storing and backup - AIESEC Session 2
[3] Storing and backup - AIESEC Session 2[3] Storing and backup - AIESEC Session 2
[3] Storing and backup - AIESEC Session 2
mohamedepankolo
Ìý
sterategicinformationsystem-250329162230-1990dc92.pptx
sterategicinformationsystem-250329162230-1990dc92.pptxsterategicinformationsystem-250329162230-1990dc92.pptx
sterategicinformationsystem-250329162230-1990dc92.pptx
EliasHaile7
Ìý
ARCH 2025: New Mexico Respite Provider Registry
ARCH 2025: New Mexico Respite Provider RegistryARCH 2025: New Mexico Respite Provider Registry
ARCH 2025: New Mexico Respite Provider Registry
Allen Shaw
Ìý
STS-PRELIM-2025.pptxtyyfddjugggfssghghihf
STS-PRELIM-2025.pptxtyyfddjugggfssghghihfSTS-PRELIM-2025.pptxtyyfddjugggfssghghihf
STS-PRELIM-2025.pptxtyyfddjugggfssghghihf
TristanEvasco
Ìý
FinanceGPT Labs Whitepaper - Risks of Large Quantitative Models in Financial ...
FinanceGPT Labs Whitepaper - Risks of Large Quantitative Models in Financial ...FinanceGPT Labs Whitepaper - Risks of Large Quantitative Models in Financial ...
FinanceGPT Labs Whitepaper - Risks of Large Quantitative Models in Financial ...
FinanceGPT Labs
Ìý
Sources of Data and Data collection methods.pptx
Sources of Data and Data collection methods.pptxSources of Data and Data collection methods.pptx
Sources of Data and Data collection methods.pptx
denniskhisa
Ìý
Data Management on AWS: from caos to centralized governance - 2025-03-26
Data Management on AWS: from caos to centralized governance - 2025-03-26Data Management on AWS: from caos to centralized governance - 2025-03-26
Data Management on AWS: from caos to centralized governance - 2025-03-26
Alessandra Bilardi
Ìý
data compression.ppt tree structure vector
data compression.ppt tree structure vectordata compression.ppt tree structure vector
data compression.ppt tree structure vector
vidhyaminnalveeran29
Ìý
Forecasting in AWS - 2025-01-25
Forecasting in AWS - 2025-01-25Forecasting in AWS - 2025-01-25
Forecasting in AWS - 2025-01-25
Alessandra Bilardi
Ìý
buiding web based land registration buiding web based land registration and m...
buiding web based land registration buiding web based land registration and m...buiding web based land registration buiding web based land registration and m...
buiding web based land registration buiding web based land registration and m...
habtamudele9
Ìý
How can Competitive Intelligence Platforms benefit a Business?
How can Competitive Intelligence Platforms benefit a Business?How can Competitive Intelligence Platforms benefit a Business?
How can Competitive Intelligence Platforms benefit a Business?
Contify
Ìý
cisco-and-splunk-innovation-through-the-power-of-integration.pdf
cisco-and-splunk-innovation-through-the-power-of-integration.pdfcisco-and-splunk-innovation-through-the-power-of-integration.pdf
cisco-and-splunk-innovation-through-the-power-of-integration.pdf
LonJames2
Ìý
Quantitative Presentation_Final.....pptx
Quantitative Presentation_Final.....pptxQuantitative Presentation_Final.....pptx
Quantitative Presentation_Final.....pptx
lenny lopez
Ìý
Drillingis_optimizedusingartificialneural.pptx
Drillingis_optimizedusingartificialneural.pptxDrillingis_optimizedusingartificialneural.pptx
Drillingis_optimizedusingartificialneural.pptx
singhsanjays2107
Ìý
GLOBAL-GOALS-LOCAL-ACTIONS-The-SDG-Journey-from-Vision-to-Reality.pptx
GLOBAL-GOALS-LOCAL-ACTIONS-The-SDG-Journey-from-Vision-to-Reality.pptxGLOBAL-GOALS-LOCAL-ACTIONS-The-SDG-Journey-from-Vision-to-Reality.pptx
GLOBAL-GOALS-LOCAL-ACTIONS-The-SDG-Journey-from-Vision-to-Reality.pptx
KunalBhadana3
Ìý
Lecture 2-DATABASE MODELS lecture 2.pptx
Lecture 2-DATABASE MODELS lecture 2.pptxLecture 2-DATABASE MODELS lecture 2.pptx
Lecture 2-DATABASE MODELS lecture 2.pptx
elvis24mutura
Ìý

Friend Function Computer Programming.pdf

  • 2. FRIEND FUNCTIONS Friend functions of an object can "see" inside the object and access private member functions and data. To declare a function as a friend of a class, precede the function prototype in the class definition with the keyword friend.
  • 5. class rectangle { friend void set_value(rectangle&, float); // friend declaration private: float height; float width; int xpos; int ypos; public: rectangle(float, float); // constructor void draw(); // draw member function void posn(int, int); // position member function void move(int, int); // move member function float get_height(); // access function void set_height(float); // access function };
  • 6. void set_value(rectangle &rc, float h) { rc.height = h; } void main() { rectangle rc(1.0, 3.0); set_value(rc, 10.0); }
  • 11. FRIEND FUNCTION PROGRAM EXERCISE ï‚¡ Write a class complex that has two private attributes one for storing real part and other for imaginary part. SetNumber function to set the real part and imaginary part. PrintNumber function to display them on screen. ï‚¡ Write a function to calculate Sum of two complex numbers(Hint: use friend function ) 2 + 3i 3 + 7i -------------- 5 + 10i
  • 12. FRIEND CLASS PROGRAM EXERCISE ï‚¡ Modify the program you have written for last exercise. Introduce a class calculator that adds real part of complex number in a function and return int. Similar function for sum of imaginary part. Make the class friend of class complex.