473,395 Members | 1,412 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Help a beginner

Hello experts,
I am a complete beginner in C++ (although I know C).
I am trying to compile the code below, and I get
the following error.
Can anyone explain to me my mistake?
Thanks!
PhilB

myprog2.cpp: In method `Line::Line (Point, Point)':
myprog2.cpp:32: no matching function for call to `Point::Point ()'
myprog2.cpp:12: candidates are: Point::Point (int, int)
myprog2.cpp:9: Point::Point (const Point &)
myprog2.cpp:32: no matching function for call to `Point::Point ()'
myprog2.cpp:12: candidates are: Point::Point (int, int)
myprog2.cpp:9: Point::Point (const Point &)
myprog2.cpp:32: no matching function for call to `Point::Point ()'
myprog2.cpp:12: candidates are: Point::Point (int, int)
myprog2.cpp:9: Point::Point (const Point &)

//------------------------
class Point
{
protected:
int x;
int y;
public:
Point::Point(int, int);
};

Point::Point(int initx, int inity)
{
x=initx;
y=inity;
return;
}

class Line:public Point
{
public:
Point start_point;
Point end_point;

public:
Line::Line(Point, Point);
};

Line::Line(Point initp1, Point initp2)
{
start_point=initp1;
end_point=initp2;
return;
}

main()
{
Point p1(10,20);
Point p2(20,40);
Line l1(p1,p2);
}
//------------------------
Jul 22 '05 #1
15 1896
> //------------------------
class Point
{
protected:
int x;
int y;
public:
Point::Point(int, int);
};


not Point::Point(int, int);
but just Point(int, int);

same in Line class.

Jul 22 '05 #2
"PhilB" <pb******@yahoo.com> wrote in message
news:10**************************@posting.google.c om...
Hello experts,
I am a complete beginner in C++ (although I know C).
I am trying to compile the code below, and I get
the following error.
Can anyone explain to me my mistake?
Thanks!
PhilB

myprog2.cpp: In method `Line::Line (Point, Point)':
myprog2.cpp:32: no matching function for call to `Point::Point ()'
myprog2.cpp:12: candidates are: Point::Point (int, int)
myprog2.cpp:9: Point::Point (const Point &)
myprog2.cpp:32: no matching function for call to `Point::Point ()'
myprog2.cpp:12: candidates are: Point::Point (int, int)
myprog2.cpp:9: Point::Point (const Point &)
myprog2.cpp:32: no matching function for call to `Point::Point ()'
myprog2.cpp:12: candidates are: Point::Point (int, int)
myprog2.cpp:9: Point::Point (const Point &)

//------------------------
class Point
{
protected:
int x;
int y;
public:
Point::Point(int, int);
};

Point::Point(int initx, int inity)
{
x=initx;
y=inity;
return;
}

class Line:public Point
{
public:
Point start_point;
Point end_point;

public:
Line::Line(Point, Point);
};

Line::Line(Point initp1, Point initp2)
{
start_point=initp1;
end_point=initp2;
return;
}

main()
{
Point p1(10,20);
Point p2(20,40);
Line l1(p1,p2);
}
//------------------------ Hello,

In the class as:
class Point
{
protected:
int x;
int y;
public:
Point::Point(int, int); ^^^^remove the "Point::" };


Same for the other class.

--
Elias
Jul 22 '05 #3
PhilB wrote:
Hello experts,
I am a complete beginner in C++ (although I know C).
I am trying to compile the code below, and I get
the following error.
Can anyone explain to me my mistake?
Isn't it obvious from the error messages?
Thanks!
PhilB

myprog2.cpp: In method `Line::Line (Point, Point)':
myprog2.cpp:32: no matching function for call to `Point::Point ()'
You try to use the default constructor (i.e. `Point::Point ()'), but
your Point class doesn't have one.
myprog2.cpp:12: candidates are: Point::Point (int, int)
myprog2.cpp:9: Point::Point (const Point &)
myprog2.cpp:32: no matching function for call to `Point::Point ()'
myprog2.cpp:12: candidates are: Point::Point (int, int)
myprog2.cpp:9: Point::Point (const Point &)
myprog2.cpp:32: no matching function for call to `Point::Point ()'
myprog2.cpp:12: candidates are: Point::Point (int, int)
myprog2.cpp:9: Point::Point (const Point &)

//------------------------
class Point
{
protected:
int x;
int y;
public:
Point::Point(int, int);
};

Point::Point(int initx, int inity)
{
x=initx;
y=inity;
return;
}

class Line:public Point
{
public:
Point start_point;
Point end_point;

public:
Line::Line(Point, Point);
};

Line::Line(Point initp1, Point initp2)
{
start_point=initp1;
end_point=initp2;
return;
}
Since you have not specified an initializer for your Point objects, the
default constructor will be used to create them, but you don't have
one. Try this instead:

Line::Line(Point initp1, Point initp2)
: start_point(initp1),
end_point(initp2)
{
}

This will use the copy constructor (which is generated by the compiler
automatically) to create your two Point members.

main()
{
Point p1(10,20);
Point p2(20,40);
Line l1(p1,p2);
}
//------------------------


Jul 22 '05 #4
"PhilB" <pb******@yahoo.com> wrote in message
news:10**************************@posting.google.c om...
Hello experts,
I am a complete beginner in C++ (although I know C).
I am trying to compile the code below, and I get
the following error.
Can anyone explain to me my mistake?
Thanks!
PhilB

myprog2.cpp: In method `Line::Line (Point, Point)':
myprog2.cpp:32: no matching function for call to `Point::Point ()'
myprog2.cpp:12: candidates are: Point::Point (int, int)
myprog2.cpp:9: Point::Point (const Point &)
myprog2.cpp:32: no matching function for call to `Point::Point ()'
myprog2.cpp:12: candidates are: Point::Point (int, int)
myprog2.cpp:9: Point::Point (const Point &)
myprog2.cpp:32: no matching function for call to `Point::Point ()'
myprog2.cpp:12: candidates are: Point::Point (int, int)
myprog2.cpp:9: Point::Point (const Point &)

//------------------------
class Point
{
protected:
int x;
int y;
public:
Point::Point(int, int);
};

Point::Point(int initx, int inity)
{
x=initx;
y=inity;
return;
}

class Line:public Point
{
public:
Point start_point;
Point end_point;

public:
Line::Line(Point, Point);
};

Line::Line(Point initp1, Point initp2)
{
start_point=initp1;
end_point=initp2;
return;
}

main()
{
Point p1(10,20);
Point p2(20,40);
Line l1(p1,p2);
}
//------------------------


Please note it one of my top ten that a number of you objected to having on
the list.

To poster: Your Point constructor is protected, which means it can only be
called by code of the Point class or one of its subclasses (Line). You are
calling it from main.
When you create a Line object, C++ will automatically construct the Point
inherited portion by calling a constructor for a Point using a default
constructor. And there isn't one.
In addition, I'd say your design is flawed: A Line is not a kind of Point so
you should not be using an is-a design. Lines have Points which is a has-a
design. This is one way it could look:

#include <iostream>

using namespace std;

class Linex;
class Pointx
{
friend class Linex;
int x, y; //coordinates
public:
Pointx (int x, int y):x(x), y(y){};
Pointx ( ){}; //This is the missing constructor
};

class Linex
{
Pointx startPoint, endPoint; //points for line
public:
void show( );
Linex (Pointx start, Pointx end)
{
startPoint = start;
endPoint = end;
}

};

void Linex::show( )
{
cout << "Start=(" << startPoint.x << ", " << startPoint.y
<< ") : End=(" << endPoint.x << ", " << endPoint.y
<< ")" << endl;
}

int main( )
{
Pointx point1(10,20);
Pointx point2(20,30);
Linex myLine(point1, point2);
cout << "Line is ";
myLine.show( );
cout << endl;

return 0;
}

Note: I made the entire class Linex a friend because my compiler is
objecting to making single function a friend. Don't know why.
MingW32: Is this a known bug?
--
Gary
Jul 22 '05 #5

"PhilB" <pb******@yahoo.com> wrote in message
news:10**************************@posting.google.c om...
Hello experts,
I am a complete beginner in C++ (although I know C).
I am trying to compile the code below, and I get
the following error.
Can anyone explain to me my mistake?
Thanks!
PhilB

myprog2.cpp: In method `Line::Line (Point, Point)':
myprog2.cpp:32: no matching function for call to `Point::Point ()'
The compiler is trying to tell you there is no default constructor for
Point.
myprog2.cpp:12: candidates are: Point::Point (int, int)
The compiler says it only sees this constructor, to create a point from two
ints.

[snip]
class Point
{
protected:
int x;
int y;
Protected data is usually a mistake; it tends to introduce confusing
dependencies between a base and its derived classes.

Also, if you intend to use Point as a base class, you should declare a
virtual destructor, (virtual ~Point()) or else derived objects may not be
properly destroyed.
public:
Point::Point(int, int);
(Note: the "Point::" is unnecessary inside the class definition, it is only
needed when you define the function outside of the class definition.)

This declares a constructor from two ints, which hides the
compiler-generated default constructor. If you want the default constructor
as well, you would need to define one:

Point () {}

This is not really necessary though, there's a better solution to your
immediate problem.
};

Point::Point(int initx, int inity)
{
x=initx;
y=inity;
return;
}
You don't need to explicitly return here. This function would usually be
written (for reasons explained later):

Point (int initx, int inity) : x (initx), y (inity) {}

This uses initialization syntax to assign the values of x and y. Your
syntax instead, will first create the two ints and then assign new values
for them. This isn't too big a deal for ints, but see below.

(Also, many C++ coders prefer to mark member data in some way to
differentiate between member data and function arguments. Popular ways
include m_x ("m_" for member) and x_.)

class Line:public Point
{
public:
Point start_point;
Point end_point;
As someone trying to break old C habits it will probably be better for you
to only use private data until you learn the exceptions to this rule.
Instead, make functions that act on Lines and Points members of those
classes.

public:
Line::Line(Point, Point);
};

Line::Line(Point initp1, Point initp2)
{
start_point=initp1;
end_point=initp2;
return;
}


OK, here's the compiler's problem; not just a style one :). This tells the
compiler to first default construct two points, and then assign the new
point values to them. However, the Point's constructor has hidden the
default constructor, so this won't work. Instead, you should write:

Line (Point initp1, Point initp2) : start_point (initp1), end_point
(initp2) {}

This will use the compiler-generated Point copy constructor (which isn't
hidden by the user-declared constructor), instead. In general it is good
practice to use initialization syntax where possible, since
1) The compiler may be able to optimize it better.
2) It's a familiar idiom to C++ coders.
3) It removes the necessity of defining default constructors for objects.

As you get more used to OO programming, you will find that default objects
do not make sense for all kinds of classes, and often require
special-purpose code to handle the default-constructed case. I think
"Point" is a class where a default constructor may or may not be
appropriate, depending on your other requirements.

HTH
--
KCS


Jul 22 '05 #6


PhilB wrote:
Hello experts,
I am a complete beginner in C++ (although I know C).
I am trying to compile the code below, and I get
the following error.
Can anyone explain to me my mistake?
Thanks!
PhilB

myprog2.cpp: In method `Line::Line (Point, Point)':
myprog2.cpp:32: no matching function for call to `Point::Point ()'
myprog2.cpp:12: candidates are: Point::Point (int, int)
myprog2.cpp:9: Point::Point (const Point &)
myprog2.cpp:32: no matching function for call to `Point::Point ()'
myprog2.cpp:12: candidates are: Point::Point (int, int)
myprog2.cpp:9: Point::Point (const Point &)
myprog2.cpp:32: no matching function for call to `Point::Point ()'
myprog2.cpp:12: candidates are: Point::Point (int, int)
myprog2.cpp:9: Point::Point (const Point &)
You dont have a default constructor, so convert the existing one to one.

//------------------------
class Point
{
protected:
int x;
int y;
public:
Point::Point(int, int);
};

Point::Point(int initx, int inity) make this
Point::Point(int initx=0, int inity=0) {
x=initx;
y=inity;
return;
}

class Line:public Point
{
public:
Point start_point;
Point end_point;

public:
Line::Line(Point, Point);
};

Line::Line(Point initp1, Point initp2)
{
start_point=initp1;
end_point=initp2;
return;
}

main()
{
Point p1(10,20);
Point p2(20,40);
Line l1(p1,p2);
}
//------------------------

--
regards,
Vardhan
--

Jul 22 '05 #7

"Rolf Magnus" <ra******@t-online.de> wrote in message
news:br*************@news.t-online.com...
PhilB wrote:
Hello experts,
I am a complete beginner in C++ (although I know C).
I am trying to compile the code below, and I get
the following error.
Can anyone explain to me my mistake?


Isn't it obvious from the error messages?


The only thing that's obvious is that it isn't.
Jul 22 '05 #8

"lallous" <la*****@lgwm.org> wrote in message
news:br************@ID-161723.news.uni-berlin.de...
In the class as:
class Point
{
protected:
int x;
int y;
public:
Point::Point(int, int);

^^^^remove the "Point::"
};


Same for the other class.

Actually, I believe that's fine. Anyway, that's not the main problem. The
main problem is that he's trying to create Points with the default
constructor, and there's no default constructor.
Jul 22 '05 #9

"Vardhan Prabhakar N [C]" <a3****@motorola.com> wrote in message
news:3F**************@motorola.com...
//------------------------
class Point
{
protected:
int x;
int y;
public:
Point::Point(int, int);
};

Point::Point(int initx, int inity)

make this
Point::Point(int initx=0, int inity=0)


Not really a good explanation. That very well might not be what he wants.
Jul 22 '05 #10

"Gary Labowitz" <gl*******@comcast.net> wrote in message
news:K9********************@comcast.com...

Please note it one of my top ten that a number of you objected to having on the list.

To poster: Your Point constructor is protected, which means it can only be
called by code of the Point class or one of its subclasses (Line).


No, you missed the public.
Jul 22 '05 #11

"Marko Becirevic" <ma*******************@zg.tel.hr> wrote in message
news:br**********@ls219.htnet.hr...
//------------------------
class Point
{
protected:
int x;
int y;
public:
Point::Point(int, int);
};


not Point::Point(int, int);
but just Point(int, int);

same in Line class.


That is not the problem. The problem is that he has Points in his Line.
There is no way to construct those Points when he goes to create a Line in
his main program.
Jul 22 '05 #12
"Gary Labowitz" <gl*******@comcast.net> wrote in message news:<K9********************@comcast.com>...
Please note it one of my top ten that a number of you objected to having on
the list.

To poster: Your Point constructor is protected, which means it can only be
called by code of the Point class or one of its subclasses (Line). You are
calling it from main.
When you create a Line object, C++ will automatically construct the Point
inherited portion by calling a constructor for a Point using a default
constructor. And there isn't one.
In addition, I'd say your design is flawed: A Line is not a kind of Point so
you should not be using an is-a design. Lines have Points which is a has-a
design. This is one way it could look:

#include <iostream>

using namespace std;

class Linex;
class Pointx
{
friend class Linex;
int x, y; //coordinates
public:
Pointx (int x, int y):x(x), y(y){};
Pointx ( ){}; //This is the missing constructor


Hello Gary
Thank you for your reply; I just added the line
Pointx ( ){};
and it compiles with no error!
Thanks to all for sharing your expertise.
PhilB
Jul 22 '05 #13
On Tue, 16 Dec 2003 05:51:02 -0800, PhilB wrote:
Hello experts,
I am a complete beginner in C++ (although I know C).
I am trying to compile the code below, and I get
the following error.
Can anyone explain to me my mistake?
Thanks!
PhilB

myprog2.cpp: In method `Line::Line (Point, Point)':
myprog2.cpp:32: no matching function for call to `Point::Point ()'
myprog2.cpp:12: candidates are: Point::Point (int, int)
myprog2.cpp:9: Point::Point (const Point &)
myprog2.cpp:32: no matching function for call to `Point::Point ()'
myprog2.cpp:12: candidates are: Point::Point (int, int)
myprog2.cpp:9: Point::Point (const Point &)
myprog2.cpp:32: no matching function for call to `Point::Point ()'
myprog2.cpp:12: candidates are: Point::Point (int, int)
myprog2.cpp:9: Point::Point (const Point &)

//------------------------
class Point
{
protected:
int x;
int y;
public:
Point::Point(int, int);
};

Point::Point(int initx, int inity)
{
x=initx;
y=inity;
return;
}

class Line:public Point
{
public:
Point start_point;
Point end_point;

public:
Line::Line(Point, Point);
};

Line::Line(Point initp1, Point initp2)
{
start_point=initp1;
end_point=initp2;
return;
}

main()
{
Point p1(10,20);
Point p2(20,40);
Line l1(p1,p2);
}
//------------------------


The answer has been covered over and over, here so I will only include
my alternate implementation that doesn't require definition of the
default constructor

class Point
{
protected:
int x;
int y;
public:
Point(int, int);
};

Point::Point(int initx, int inity)
{
x=initx;
y=inity;
return;
}

class Line
{
public:
Point* start_point;
Point* end_point;
public:
Line(Point*, Point*);
};

Line::Line(Point* initp1, Point* initp2)
{
start_point=initp1;
end_point=initp2;
return;
}

main()
{
Point p1(10,20);
Point p2(20,40);
Line l1(&p1,&p2);
}

I removed the line is-a point relationship which makes little sence.
Additionally, I used pointers to avoid the calling of the default
constructor.

--Steve
Jul 22 '05 #14
Steven Green <st************@verizon.net> wrote in message news:<pa****************************@verizon.net>. ..
The answer has been covered over and over, here so I will only include
my alternate implementation that doesn't require definition of the
default constructor

class Point
{
protected:
int x;
int y;
public:
Point(int, int);
};

Point::Point(int initx, int inity)
{
x=initx;
y=inity;
return;
}

class Line
{
public:
Point* start_point;
Point* end_point;
public:
Line(Point*, Point*);
};

Line::Line(Point* initp1, Point* initp2)
{
start_point=initp1;
end_point=initp2;
return;
}

main()
{
Point p1(10,20);
Point p2(20,40);
Line l1(&p1,&p2);
}

I removed the line is-a point relationship which makes little sence.
Additionally, I used pointers to avoid the calling of the default
constructor.

--Steve

Hi Steve,
Thanks a lot for your crystal-clear example,
and thanks for sharing your expertise.
PhilB
Jul 22 '05 #15
Steven Green <st************@verizon.net> wrote in message news:<pa****************************@verizon.net>. ..
class Line
{
public:
Point* start_point;
Point* end_point;
public:
Line(Point*, Point*);
};

Line::Line(Point* initp1, Point* initp2)
{
start_point=initp1;
end_point=initp2;
return;
}

main()
{
Point p1(10,20);
Point p2(20,40);
Line l1(&p1,&p2);
}

I removed the line is-a point relationship which makes little sence.
Additionally, I used pointers to avoid the calling of the default
constructor.

--Steve


Now, though, Line doesn't own its Points anymore ... in this example,
if you pass l1 as a return value or do anything that extends its
lifetime beyond p1 and p2, you'll have problems. Unless Points are
really expensive to create and/or copy, this may not be the best way
to do it.

My two cents at least,
Michael
Jul 22 '05 #16

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

Similar topics

15
by: Judi Keplar | last post by:
I am currently taking a course to learn Python and was looking for some help. I need to write a Python statement to print a comma- separated repetition of the word, "Spam", written 511 times...
15
by: Philip Mette | last post by:
I am begginner at best so I hope someone that is better can help. I have a stored procedure that updates a view that I wrote using 2 cursors.(Kind of a Inner Loop) I wrote it this way Because I...
8
by: Grrrbau | last post by:
I'm a beginner. I'm looking for a good C++ book. Someone told me about Lafore's "Object-Oriented Programming in C++". What do you think? Grrrbau
7
by: BobJohnson | last post by:
Just started learning C++ and I need some help with my homework, shouldn't take long for people around here. I need to create a simple money calculator but I don't know how to make the output...
16
by: ranger | last post by:
Hi, I'm a beginner with C++, studying on my own from a book and I've encoutered quite some problems.. If possible, someone out there might help me out.. The problem is the following.. I've...
1
by: Simon Matthews | last post by:
Hope someone can help an Access beginner! I've just started keeping my surgical logbook on access and it's a simple flat-file affair. I have created several queries that will list cases...
1
by: newbie | last post by:
Hi I am using a toolkit written in c++ that consists of three parts 1) video captur 2) image processin 3) OpenGL wrappe The video capture program only works with local hardware (for...
1
by: hl | last post by:
Hi, I'm a beginner and need a little help with getting data back from a web service. I am using VB.Net and have added a web reference to a Wsdl that was provided to me. My reference.vb file...
6
by: fool | last post by:
Dear group, Given a string I have to print the permutation, using some looping tricks. This is not a Home work problem. My best try as beginner is: #include<stdio.h> #include<stdlib.h> ...
1
by: macmac | last post by:
I'm new to this forum and I am in a beginner level with programming too. I posted this thing out hoping that somebody could help me out in making this program. I am working right now as a C++...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
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,...
0
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,...
0
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...
0
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...

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.