Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6033353
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T05:28:16+00:00 2026-05-23T05:28:16+00:00

I have a difficult to understand the subject of overloading operator in C++ and

  • 0

I have a difficult to understand the subject of overloading operator in C++ and Java.

For example, I define a new class Fraction:

class Fraction { 
public: 
    Fraction (int top, int bottom) { t = top; b = bottom; } 
    int numerator() { return t; } 
    int denominator() { return b; } 
private: 
    int t, b; 
};

and I want to overload the operator << for printing Fraction. How I do it? I need to overload it inside Class Fraction or outside Class Fraction?

In java – Is it possible to overload operator? How I can do it there (for example, I want to overload the operator +).

If there is a metrial about this subject, It will be great.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T05:28:17+00:00Added an answer on May 23, 2026 at 5:28 am

    For C++: Overloading the << Operator on msdn

    // overload_date.cpp
    // compile with: /EHsc
    #include <iostream>
    using namespace std;
    
    class Date
    {
        int mo, da, yr;
    public:
        Date(int m, int d, int y)
        {
            mo = m; da = d; yr = y;
        }
        friend ostream& operator<<(ostream& os, const Date& dt);
    };
    
    ostream& operator<<(ostream& os, const Date& dt)
    {
        os << dt.mo << '/' << dt.da << '/' << dt.yr;
        return os;
    }
    
    int main()
    {
        Date dt(5, 6, 92);
        cout << dt;
    }
    

    So as answer to “I need to overload it inside Class Fraction or outside Class Fraction?”
    You declare the function as a friend of the class so that the std::osteam object can access its private data. The function, however, is defined outside of the class.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm recently new in MVC technology and i'm with a difficult I have a
I am new to cassandra and find it a bit difficult to understand in
i am starting with cassandra, but i have some difficult to understand how the
I'm finding it difficult to understand how ActiveAdmin(http://activeadmin.info/) works with existing controllers I have
I have difficult understand the proper usage of @SessionAttribute annotation. I wonder does the
I have a Public Class called ClientConnection. Inside that class, I have a Public
I'm not sure it's an acceptabale question for Stackoverflow but I have difficult time
I have an oddly difficult task to perform. I thought it would be easy,
Ever since I gained experience at a software house I have found it difficult
I have a problem with a difficult regex. I have this expression to detect

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.