简体   繁体   English

在c ++中添加两个c字符串

[英]adding two c-strings in c++

In my code I am trying to add two strings together, however for some reason I can't seem to get the correct return type for my stringAdd function. 在我的代码中,我试图将两个字符串添加到一起,但由于某种原因,我似乎无法获得我的stringAdd函数的正确返回类型。 I want to be able to return a c-string. 我希望能够返回一个c字符串。 And my implementation doesn't seem to work either. 我的实现似乎也没有用。 Any suggestions? 有什么建议么?

 #include <iostream>
 #include<cstring>

 using namespace std;
 int stringLength(char *); // Function prototype 
 char stringAdd(char *strPtr, char *strPtr2);//Function prototype

int main()
{
   const int SIZE = 51; // Array size 
   char letter; // The character to count 
   char word1[SIZE] = "Happy ";
   char word2[SIZE] = "Birthday";

   cout <<"Your first c-string is: "<<word1<<"Your second c-string is: "<<word2<<"\n";
   cout << "The length of your first c-string is: ";

   cout << stringLength(word1) << " chars long.\n";
   cout << "The length of your second c-string is: ";

   cout << stringLength(word2) << " chars long.\n";

   if (SIZE >= (stringLength(word1) + stringLength(word2) + 1))
   {
      cout << "we are gunna add ur strings";
      stringAdd(word1, word2);
   }
   else
   {
      cout << "String1 is not large enough for both strings.\n";
   }
   return 0;
}

int stringLength(char *strPtr)
{
    int times = 0; // Number of times a char appears in the string 

    // Step through the string each char. 
    while (*strPtr != '\0')
    {
        if (*strPtr != '0') // If the current character doesnt equals the null terminator... 
           times++; // Increments the counter 
        strPtr++; // Goes to the next char in the string. 
    }
    return times;
}

Up until this point my code works fine however the function below doesn't seem to work at all. 到目前为止,我的代码工作正常但是下面的函数似乎根本不起作用。 I'm not sure how I can add two c-strings using reference 我不确定如何使用引用添加两个c字符串

char stringAdd(char *strPtr, char *strPtr2)
{
   int size1;
   int size2;
   size1= stringLength(strPtr);
   int j=size1+1; // counter set to the num of chars in the first c-string
   int i = 0; // counter for to add to the 2nd c-string
   size2= stringLength(strPtr2);
   size1=+size2;
   char newWord[size1];

   for(int i=0;i<size1;i++)
      newWord[i] = *strPtr[i]
   for(int j=0;j<size2;j++)
      newWord[i]= *str
}

Firstly, use std::string . 首先,使用std::string

Then, use std::string . 然后,使用std::string

Finally, if you really really must manipulate char arrays manually, then at least use the C standard library functions so you have a hope of getting null-termination right. 最后,如果你真的必须手动操作char数组,那么至少使用C标准库函数,这样你就有希望得到正确的null终止。 The function you're looking for is std::strcat , which concatenates two strings. 你正在寻找的函数是std::strcat ,它连接两个字符串。

After that, use std::string . 之后,使用std::string

You have a typo in stringAdd that causes a bug 你在stringAddstringAdd了一个错误导致错误

size1=+size2;

This should be 这应该是

size1 += size2;

Otherwise you're simply overwriting size1 with the value of size2 . 否则,你只是简单地覆盖size1与价值size2 That being said, in C++ you aren't allowed to do this either 话虽如此,在C ++中你也不允许这样做

char newWord[size1];

The size of an array must be known at compile time not run time . 必须在编译时而不是运行时知道数组的大小。

Function stringAdd is incorrect and has undefined behavior because it returns nothing. 函数stringAdd不正确,并且具有未定义的行为,因为它不返回任何内容。

Also this if statement in function stringLength 也是函数stringLength if语句

if (*strPtr != '0') // If the current character doesnt equals the null terminator... 

    times++; // Increments the counter 

doea not make great sense because the condition in the enclosing while statement doea没有多大意义,因为封闭while语句中的条件

while (*strPtr != '\0')

is the same as in the if statement. 与if语句中的相同。

{ {

The functions can be written the following way 可以通过以下方式编写函数

size_t stringLength( const char *strPtr )
{
    size_t n = 0;

    while ( strPtr[n] ) ++n;

    return n;
}


char * stringAdd( char *strPtr, const char *strPtr2 )
{
    char *p = strPtr + stringLength( strPtr );

    while ( *p++ = *strPtr2++ );

    return strPtr;
}

And in main you could write 在主要你可以写

if (SIZE >= (stringLength(word1) + stringLength(word2) + 1)) {
    cout << "we are gunna add ur strings" << endl;
    cout << stringAdd(word1, word2) << endl;
}
//...

In this case word2 would be appended to word1. 在这种情况下,word2将附加到word1。

You have tagged this as "c++" and "c-strings", which is kind of like asking for a car that is powered by foot-power. 你把它标记为“c ++”和“c-strings”,这有点像要求一辆由脚踏力驱动的汽车。

You have 2 options: 你有2个选择:

  1. Use C++ strings 使用C ++字符串
  2. Use C strings 使用C字符串

For the former: 对于前者:

#include <iostream>
#include <string>

int main()
{
    std::string word1 = "Happy";
    std::string word2 = "Birthday";
    // ... your other stuff
    std::string result = word1 + " " + word2 + "!";
    std::cout << "Result is " << result << std::endl;
    return 0;
}

For the latter: 对于后者:

#include <iostream> // if you are stuck using c-strings, this is kind of odd
#include <cstring>
#include <memory>

int main()
{
    const char* word1 = "Happy";
    const char* word2 = "Birthday";
    const unsigned int newWordSize = 20; // you only need 16 for this, so 20 is sufficient
    char newWord[newWordSize];
    std::memset(newWord, newWordSize, 0);
    std::strcpy(newWord, word1);
    std::strcat(newWord, " ");
    std::strcat(newWord, word2);
    std::strcat(newWord, "!");
    std::cout << "New Word is " << newWord << std::endl;
    return 0;
}

Why what you are doing is wrong: 为什么你在做什么是错的:

// NOTE:  If your null-terminators are not set, this breaks as it is an infinite loop.
int stringLength(char *strPtr)
{
    // NOTE:  pointer arithmetic can speed up this function, and make this variable unnecessary
    int times = 0; // Number of times a char appears in the string 

    // Step through the string each char. 
    while (*strPtr != '\0')
    {
        if (*strPtr != '0') // If the current character doesnt equals the null terminator... 
           times++; // Increments the counter 
        strPtr++; // Goes to the next char in the string. 
    }
    return times;
}

char stringAdd(char *strPtr, char *strPtr2) // ERROR:  your return value should probably be char*, and you will need to free that memory later
{
   int size1;
   int size2;
   size1= stringLength(strPtr);
   int j=size1+1; // counter set to the num of chars in the first c-string
   int i = 0; // counter for to add to the 2nd c-string
   size2= stringLength(strPtr2);
   size1=+size2;
   char newWord[size1]; // ERROR:  you cannot allocate a dynamic array this way.

   for(int i=0;i<size1;i++) // ERROR:  you've set size1 = size1 + size2 + 1, and you attempt to access the first word with this new size.  You will access memory outside the bounds of your array
      newWord[i] = *strPtr[i]
   for(int j=0;j<size2;j++)
      newWord[i]= *str
    // ERROR:  You do not set the null-terminator for the new string
    // ERROR:  you do not return anything
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM