Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
#ifndef CoolString_H
#define CoolString_H
class CoolString
{
public:
CoolString()
{
size=50;
for (int i=0;i<size;i++)
{
s[i]='#';
coolyostring[i]='X';
}
}
CoolString (char chars[], int size1)
{
size=size1;
for (int i=0; i<=size1; i++)
{
s[i]=chars[i]; 
coolyostring[i]='X';
}
}
CoolString append (int n,char ch)
{
for (int i = size; i<=(size+n); i++)    
{    
s[i]=ch; 
}
}
CoolString assign (CoolString coolyostring, int n)
{
for (int i = 0; i<n; i++)
{
s[i]= coolyostring[i]; 
}
}

private:
int size; 
char s[];
char coolyostring[];    
};
#endif

// Why am i getting an error no match for operator[]???? // I am trying to make a mock string class, and I just cant figure it out. // THIs is a mock string class... i am trying to do all the same operations you would see in the regular string class. //Since i am unable to do so, i will like to have someone explain to me what is causing my program not to work...

share|improve this question
1  
The parameter coolyostring is an instance of CoolString, for which there is no [] operator defined. It's not an array. – Diego Basch Dec 15 '12 at 2:21

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.