C++ 程序的substr()函数中出现输出错误

C++ 程序的substr()函数中出现输出错误,c++,string,C++,String,代码cout的输出出错C样式字符串必须始终以零结尾('\0')。否则,它不是一个合适的字符串,对它没有多大作用。substr函数似乎没有添加此终止符 除此之外,对返回值使用静态缓冲区是非常危险的,因为每次调用substr都会破坏以前的返回。在同一条语句中或在多线程应用程序中使用两个调用都是行不通的 所有这些都可以通过使用std::string来解决,它甚至有一个工作的substr成员函数 #include<iostream> #include<string.h> usin

代码
cout的输出出错C样式字符串必须始终以零结尾(
'\0'
)。否则,它不是一个合适的字符串,对它没有多大作用。
substr
函数似乎没有添加此终止符

除此之外,对返回值使用静态缓冲区是非常危险的,因为每次调用
substr
都会破坏以前的返回。在同一条语句中或在多线程应用程序中使用两个调用都是行不通的

所有这些都可以通过使用
std::string
来解决,它甚至有一个工作的
substr
成员函数

#include<iostream>
#include<string.h>
using namespace std;
int par(char s[][80],int,int,char []);
char* substr(char*,int,int);
int main()
{
  char s[][80]={{"this is rockstar"},{"I am rockstar"},{"the best one"},{"no one can dare"},{"rockstar rocks always"}};
  char word[80]={"rockstar"};
  int n1=5;
  int num1=0;
  cout<<par(s,n1,num1,word);
  return 0;
}
int par(char s[][80],int n1,int num1,char word[80])
{
  int k=0;
  int length_word=strlen(word);
  int t=0;
  char beg[80];
  while(t!=strlen(word))
  {
    beg[t]=word[t];
    t++;
  }
  beg[t]=' ' ;
  char end[80];
  char mid[80];
  mid[0]=' ';
  t=0;
  int l=1;
  while(t!=strlen(word))
  {
    mid[l]=word[t];
    l++;
    t++;
  }
  mid[l]=' ';
  t=0;
  l=1;
  end[0]=' ';
  while(t!=strlen(word))
  {
    end[l]=word[t];
    t++;
    l++;
  }

  char temp[80];
  while(k<=n1-1)
  {
    int i=0;
    while(s[k][i]!='\0')
    {
      temp[i]=s[k][i];
      i++;
    }
    if(strcmp(substr(temp,1,strlen(word)),beg)==0)
    {
      num1+=1;
    }
    cout<<substr(temp,1,strlen(word)+1)<<'\n';
    cout<<beg<<" hello"<<'\n';
    int tr;
    for(tr=2;tr<strlen(temp)-(strlen(word)+2);tr++)
    {
      if(strcmp(substr(temp,tr,strlen(word)+2),mid)==0)
      {
        num1+=1;
      }
    }
    if(strcmp(substr(temp,strlen(temp)-strlen(word),strlen(word)+1),end)==0)
    {
      num1+=1;
    }
    k++;


  }
  return num1;
}
char* substr(char *s,int i, int j)
{
  int pos=i-1;
  static char res[80];
  int k=0;
  while(pos<=i+j-2)
  {
    res[k]=s[pos];
    pos++;
    k++;
  }
  return res;
}