Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Why does this not work:

SomeClass::SomeClass(char *lit) //Ctor
{
    str = new char[strlen(lit)+1]; // str is a pointer to char in SomeClass
    strcpy(str,"have");
    cout << str << " " << "In Ctor" << " +Size=" << strlen(str)<< endl;
}

The above code shows a string with length 0. But this code works:

SomeClass::SomeClass(char *lit)
{
    char newstr[strlen(lit)+1];
    strcpy(newstr,"have");
    cout << newstr << " " << "In Ctor" << " +Size=" << strlen(newstr)<< endl;
}

Here is the complete code.

EDIT:
Added the link to Ideone which OP removed after I answered the Question.
Without the link to source code, this Q & answer to it is useless.

share|improve this question
Please produce a complete, short program that demonstrates the error you are seeing. See sscce.org for more info. – Robᵩ Apr 4 '12 at 14:45
4  
In both cases, you're sizing the array to the length of the passed-in string lit. What guarantee is there that lit is at least four characters long? – Mike DeSimone Apr 4 '12 at 14:47
1  
@amit: No, C++ does not have VLAs, though some compilers (e.g., gcc) include them as an extension. On an unrelated note, is there a good reason to go through all these gyrations instead of just using std::string? – Jerry Coffin Apr 4 '12 at 14:53
1  
Please use your copy and paste tools to post the actual program output and/or error message instead of "does not work". – n.m. Apr 4 '12 at 15:23
1  
Why have you removed the link to the source code? Without it the Q and answer is useless for anyone who faces similar problem in future.Please edit it back to the Q! – Alok Save Apr 4 '12 at 15:56
show 6 more comments

2 Answers

up vote 4 down vote accepted

There is no problem with the strcpy, You are just messing your pointer.

The problem is here:

 str = new char[strlen(lit)+1];
 strcpy(str,lit);
 length=leng();    <------------- str points to \0 after this call
 cout << str << " " << "In Ctor" << " +Size=" << strlen(lit)<< endl;

str is your class member and You move the pointer str to point to the \0 in the function leng(), Naturally, You don't see any output in the next statement.

Solution is to hold the starting address in a separate pointer inside the function.

int String :: leng()
{
      int length=0;
      char *tempPtr= str;       <----------- Store the address in a temporary pointer
      while(*str)
      {
                 length++;
                 str++;
      }
      str = tempPtr;            <---------- Point the Pointer member to right address again
      return length;
}
share|improve this answer
1  
In addition, make String::leng() method const, so the constraint of not modifying class state (including str data member) is more evident. – user1149224 Apr 4 '12 at 15:46

Another way to write String::leng():

int String::leng()
{
    char *endPtr = str;
    while(*endPtr)
        endPtr++;
    return endPtr - str;
}
share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.