473,804 Members | 2,201 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

overloaded methods (error)

Hi, I am doing a program using overloded operators but I am getting
some error,
Can some one help please.
Here is my code:

#include<iostre am>
#include<string .h>
#include<cctype >
using namespace std;

class Date
{
private:
int mon;
int day;
int year;
string m;

public:
friend istream& operator>>(istr eam& is, Date& d1);
friend ostream &operator<<(ost ream &os, const Date &d1);
int operator-(Date);
bool operator>(Date) ;
int distinction(Dat e);
};

ostream &operator<<(ost ream &out, const Date &d)
{ <--error(a function-definition is not allowed here
before '{' token) and (expected `,' or `;' before '{' token)
out<<d.mon<<"/"<<d.day<<"/"<<d.year;
return out;
}

bool Date::operator >(Date d)
{ <--error(a function-definition is not allowed here before
'{' token) and (expected `,' or `;' before '{' token)
int diff = distinction(d);
if(diff < 0)
return true;
else
return false;
}

int Date::operator -(Date d)
{ <--error(a function-definition is not allowed here before
'{' token) and (expected `,' or `;' before '{' token)
return distinction(d);
}

int Date::distincti on(Date t)
{ <--error(a function-definition is not allowed here before
'{' token) and (expected `,' or `;' before '{' token)
int total = 0;

total = (year - t.year) * 365;
total += (month - t.month) * 30.5;
total += (day - t.day);
total += (year - t.year) / 4;

if(total<0)
total *= -1;
return total;
}

Thanks
Nov 26 '07 #1
2 1873
Latina wrote:
Hi, I am doing a program using overloded operators but I am getting
some error,
Can some one help please.
Here is my code:

#include<iostre am>
#include<string .h>
I believe this is supposed to be without the ".h"...
#include<cctype >
using namespace std;

class Date
{
private:
int mon;
int day;
int year;
string m;

public:
friend istream& operator>>(istr eam& is, Date& d1);
friend ostream &operator<<(ost ream &os, const Date &d1);
int operator-(Date);
Declare/define it as

int operator-(const Date&) const;
bool operator>(Date) ;
Same here, declare/define it as

bool operator>(const Date&) const;
int distinction(Dat e);
Similarly, declare/define this as

int distinction(con st Date&) const;
};

ostream &operator<<(ost ream &out, const Date &d)
{ <--error(a function-definition is not allowed here
before '{' token) and (expected `,' or `;' before '{' token)
It seems that you've either misplaced a curly brace or a semicolon.
out<<d.mon<<"/"<<d.day<<"/"<<d.year;
return out;
}

bool Date::operator >(Date d)
{ <--error(a function-definition is not allowed here before
'{' token) and (expected `,' or `;' before '{' token)
int diff = distinction(d);
if(diff < 0)
return true;
else
return false;
}

int Date::operator -(Date d)
{ <--error(a function-definition is not allowed here before
'{' token) and (expected `,' or `;' before '{' token)
return distinction(d);
}

int Date::distincti on(Date t)
{ <--error(a function-definition is not allowed here before
'{' token) and (expected `,' or `;' before '{' token)
int total = 0;

total = (year - t.year) * 365;
total += (month - t.month) * 30.5;
total += (day - t.day);
total += (year - t.year) / 4;

if(total<0)
total *= -1;
return total;
}
V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
Nov 26 '07 #2
I got it thanks ^_^
Nov 26 '07 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
10012
by: Alex Zhitlenok | last post by:
Hi, My question is how to resolve in C# ambiguous overloaded operators? Let say, I have two unrelated classes A and B, each one implements overloaded operator + with the first parameter of type A, and the second one of type B. Let say, these are not my classes and I know nothing about the implementation. As system doesn't know what code must be used for resolving the language construction a+b (where A a; and B b;), it returns "The call...
10
2454
by: john bailo | last post by:
Can a web method be overloaded? To support varying numbers of input parameters?
3
2255
by: cybertof | last post by:
Hello, Is it possible in C# to have 2 overloaded functions with - same names - same parameters - different return type values If no, is it possible in another language ?
3
1711
by: Vera | last post by:
I built a class in VB.NET that has an overloaded constructor. It can either accept nothing, a string or an object Public Sub New( MyBase.New( End Su Public Sub New(ByVal strName As String MyBase.New( '... Do init with strNam End Su
5
2039
by: Andreas Mueller | last post by:
Hi All, I have an overloaded generic method anmed "Foo": Class Test Class Xox(Of T) End Class Class Lulli(Of T) Inherits Xox(Of T) End Class
1
7174
by: prakash.mirji | last post by:
Hello, I am trying to compile C++ code which uses rogue wave 9.0 classes on RHEL 4.0. I use gnu g++ compiler to compile the code. Compiler is not able to match the right type of parameters to overload the methods of RW classes. Below are the two methods among others in the rw/ep_scntn.h header file
6
3828
by: c1t1z3n | last post by:
hiya, i'm having this weird error on my project. As far as I know "ambiguous call to overloaded function" should only occur when the compiler must choose from several methods, but here i don't think it's the case. I've got the following class: class item { public: item(string id_,string datatype_); //item(string id_,string datatype_,int periodo_); //item(string id_,string datatype_,string headerfile_); //item(string id_, string...
5
1678
by: __PPS__ | last post by:
Hello everybody, I'm not sure but I thought that sometime ago I had class with two overloaded methods: void func(const char*); and template<int N>func(const char (&arr)); so, that whenever I call func("some text") then size of the text will be known at compile time instead of doing strlen() I'm sure that long time ago I got it working somehow, but now when I needed and implemented a similar solution I see that it doesn't work.
6
2261
by: RobertEstelle | last post by:
Hello, I've been banging my head against this problem for a couple hours now to no avail. I'm trying to make a descendant of a class that has overloaded methods with variable argument lists. The problem is, when my descendant class does the same, function resolution seems to stop there without looking at the base class. This happens both with g++ and VS2005, so I don't suspect it's a
9
2165
by: Lawrence Krubner | last post by:
Possibly a dumb question but is type hinting allowed with overloaded methods? Can one class have these two methods? public function doSelect(Criteria $c) { // some code here } public function doSelect(Creole $c) {
0
9715
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9595
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10600
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10354
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10097
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9175
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5535
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5673
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4313
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.