Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
C
cpp
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edu
cpp
Commits
c8635534
Commit
c8635534
authored
Nov 19, 2020
by
Hans Buchmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
own copy constructor
parent
bb4bdcaf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
43 additions
and
6 deletions
+43
-6
6-cia/src/geo2d-bb.cc
6-cia/src/geo2d-bb.cc
+43
-6
No files found.
6-cia/src/geo2d-bb.cc
View file @
c8635534
...
...
@@ -11,6 +11,7 @@ class Point
{
public:
Point
(
double
x
,
double
y
);
//non-default constructor no return value
Point
(
const
Point
&
other
);
//copy constructor
~
Point
();
//destructor never with parameters no return value
static
double
distance
(
Point
p
,
Point
q
);
double
distance
(
Point
other
);
//non static instance method
...
...
@@ -28,6 +29,21 @@ Point::Point(double x,double y)
std
::
cout
<<
"constructor Point "
<<
xc
<<
","
<<
yc
<<
"
\n
"
;
}
Point
::
Point
(
const
Point
&
other
)
:
xc
(
other
.
xc
),
yc
(
other
.
yc
)
{
std
::
cout
<<
"copy constructor Point "
<<
xc
<<
","
<<
yc
<<
"
\n
"
;
}
/* wrong copy constructor
Point::Point(const Point& other)
:xc(2*other.xc),yc(2*other.yc)
{
std::cout<<"copy constructor Point "<<xc<<","<<yc<<"\n";
}
*/
Point
::~
Point
()
{
std
::
cout
<<
"destructor Point "
<<
xc
<<
","
<<
yc
<<
"
\n
"
;
...
...
@@ -39,29 +55,50 @@ double Point::distance(Point p,Point q)
// |----|----|----|----------------private
}
double
Point
::
distance
(
Point
other
)
double
Point
::
distance
(
Point
other
)
//copy constructor
{
return
std
::
hypot
(
other
.
xc
-
xc
,
other
.
yc
-
yc
);
}
}
//destructor of other
/*
with self made copy constructor
constructor Point 5,7
constructor Point 8,11
copy constructor Point 8,11
destructor Point 8,11
d=5
destructor Point 8,11
destructor Point 5,7
without own copy constructor
constructor Point 5,7
constructor Point 8,11
destructor Point 8,11 of instance other
d=5
destructor Point 8,11
destructor Point 5,7
with wrong copy constructor
constructor Point 5,7
constructor Point 8,11
copy constructor Point 0,0
destructor Point 0,0
d=8.60233
destructor Point 8,11
destructor Point 5,7
*/
//--------------------------- use case
int
main
(
int
argc
,
char
**
args
)
{
Point
p
(
5
,
7
);
Point
q
(
8
,
11
);
//distance p -> q sqrt(3*3 + 4*4)=sqrt(25)=5
//auto d=Point::distance(p,q);
auto
d
=
p
.
distance
(
q
);
// |----------|------------- instance
auto
d
=
p
.
distance
(
q
);
//other = q copy constructor
std
::
cout
<<
"d="
<<
d
<<
"
\n
"
;
return
0
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment