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 7587157
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T19:36:16+00:00 2026-05-30T19:36:16+00:00

I read few questions here on SO about this topic which seems yet confusing

  • 0

I read few questions here on SO about this topic which seems yet confusing to me. I’ve just begun to learn C++ and I haven’t studied templates yet or operator overloading and such.

Now is there a simple way to overload

class My {
public:
    int get(int);
    char get(int);
}

without templates or strange behavior? or should I just

class My {
public:
    int get_int(int);
    char get_char(int);
}

?

  • 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-30T19:36:18+00:00Added an answer on May 30, 2026 at 7:36 pm

    No there isn’t. You can’t overload methods based on return type.

    Overload resolution takes into account the function signature. A function signature is made up of:

    • function name
    • cv-qualifiers
    • parameter types

    And here’s the quote:

    1.3.11 signature

    the information about a function that participates in overload
    resolution (13.3): its parameter-type-list (8.3.5) and, if the
    function is a class member, the cv-qualifiers (if any) on the function
    itself and the class in which the member function is declared. […]

    Options:

    1) change the method name:

    class My {
    public:
        int getInt(int);
        char getChar(int);
    };
    

    2) out parameter:

    class My {
    public:
        void get(int, int&);
        void get(int, char&);
    }
    

    3) templates… overkill in this case.

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

Sidebar

Related Questions

I know there are plenty of questions here already about this topic (I've read
I've read through a few questions about this here on s.o. and none seem
I read about Big-O Notation from here and had few questions on calculating the
I read through quite a few similar questions here on SO but none were
I have read quite a few selcet+update questions in here but cannot understand how
I realize there have been a few other questions on this topic, and the
I've read through some of the questions here and my understanding is that this
I know this questions has been asked a few times here. But these seem
First of all, I know there are a few other StackOverflow questions about this
In the past few months, I've read multiple articles about this new unobtrusive JavaScript

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.