Files
CSCI-1200/lectures/13_operators/overloading_member.cpp
2024-02-23 12:26:30 -05:00

33 lines
546 B
C++

// Overloading the output stream operator as a member function.
#include <iostream>
class MyClass {
private:
int value;
public:
MyClass(int val) : value(val) {}
// getter function to access private member
int getValue() const {
return value;
}
// overload the output stream operator as a non-member function
std::ostream& operator<<(std::ostream& os) {
os << "Value: " << value;
return os;
}
};
int main() {
MyClass obj(42);
// output the object using the overloaded operator
obj << std::cout << std::endl;
return 0;
}