• 0

C++ MyString Class


Question

I would just like someone to check this function, because I'm not sure if I did it completely right. I have a MyString class with size, capacity, and data member variables. size is like strlen. capacity is size + 1 (for the null terminator) and data is a char array.

In this code, do I need to check for null arrays? I'm not quite sure how to do this.

I'm creating a MyString instance to hold str + this->data and then I return it. I think it's a little sloppy and could maybe be implemented better. Any suggestions? Thanks!

// in testString.cpp

MyString s1;

s1 = s2 + cString; // s2 contains "hi" and cString contains "world"

// s1 should now be... "hiworld"

MyString MyString::operator + (const char* str)
{
	MyString concatStr;

	concatStr.size = this->size + strlen(str);
	concatStr.capacity = concatStr.size + 1;
	concatStr.data = new char[concatStr.capacity];

   // copies the first string
	for (int i = 0; i < this->size; i++) 
       concatStr.data[i] = this->data[i];

	// copies the second string
	for (int i = 0; i < strlen(str)+1; i++)   // plus one for the /0
        concatStr.data[i+(this->size)] = str[i];  
  
	return concatStr;	
}

Link to comment
https://www.neowin.net/forum/topic/219583-c-mystring-class/
Share on other sites

6 answers to this question

Recommended Posts

  • 0

capacity shouldnt be strlen + 1. it should be a size that is a multiple 2.

What some string libs do, is when you concatenate/modify/do any op on a string, if it needs to allocate any memory, it allocates more than it needs. that way if you add some more data that will fit within the extra room, you dont have to copy memory over and allocate new memory.

That's my only recommendation.

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Seem like they are seeking for a one size fits all. You have power users and "what's a computer" generation growing up on phones, tablets, and Chromebooks.
    • Guessing it was profitable enough inserting prompted apps vs the hate it generated.
    • Also good for Debugging or troubleshooting your game.. i dont get it why nvidia app or amd does not show this data.. if steam can do it..
    • Microsoft reportedly planning to lay off thousands of employees, mostly in sales by Usama Jawad Back in May 2025, Microsoft decided to lay off 3% of its workforce, which amounted to roughly 6,000 employees. It claimed that this decision allowed it to implement better organizational changes in a "dynamic marketplace". Now, a new report claims that the Redmond tech firm is planning to lay off thousands more next month. Citing unnamed sources, Bloomberg reports that as the company continues investing heavily in its AI ventures, it is about to announce layoffs of thousands of workers as early as next month. This reduction in workforce will primarily affect sales teams, but they won't be the only ones affected. That said, the sources did mention that the timing for this announcement may change. This move, if true, won't be entirely surprising. In April 2025, Microsoft announced that it will be relying more on third-party firms to sell its software to small- and medium-sized customers. It's currently unclear how many employees will be impacted by this change, but even if the layoff percentage is in the single digits, it would still be significant as it would be impacting the professional careers of thousands. The May 2025 layoffs primarily impacted engineering and product teams. The other major round of layoffs prior to this was the decision to eliminate 10,000 jobs back in January 2023. Those represented 5% of the total workforce at that time, with numerous teams, including the one leading Mixed Reality (MR) efforts, being heavily impacted. It is interesting to note that if the timing of the announcement for layoffs is accurate, it would be soon after Microsoft closes its fiscal year at the end of June 2025. Although we'll get financial reports for the latest quarter soon after too, one has to wonder what the human cost of profit is, as Microsoft continues to report billions of dollars in revenue every quarter. Source: Bloomberg (paywall)
  • Recent Achievements

    • First Post
      Fuzz_c earned a badge
      First Post
    • First Post
      TIGOSS earned a badge
      First Post
    • Week One Done
      slackerzz earned a badge
      Week One Done
    • Week One Done
      vivetool earned a badge
      Week One Done
    • Reacting Well
      pnajbar earned a badge
      Reacting Well
  • Popular Contributors

    1. 1
      +primortal
      704
    2. 2
      ATLien_0
      285
    3. 3
      Michael Scrip
      213
    4. 4
      +FloatingFatMan
      194
    5. 5
      Steven P.
      131
  • Tell a friend

    Love Neowin? Tell a friend!