我正在尝试制作一个仿冒字符串结构,它将为我提供我的代码所需的基本内容(我不需要所有东西,并且想让我的代码尽可能快和小)。因此,除了获取源代码strcpy
和strcmp
(我可以这样做吗?)之外,我还做了一个struct hstring
来帮助我的代码。到目前为止,我有以下内容struct
:
struct hstring{
private:
char *s; // pointer to what holds the string
int size; // size of the string
public:
hstring(){
s=(char *)malloc(0);
size=0;
}
void set(const char* str){ // set the string
size=0;
while(str[size]!='\0')
size++;
s=(char*)realloc((void *)s,size*sizeof(*s)); // reallocate memory to hold just enough for the character array
for(int i=0;i<size;i++)
s[i]=str[i];
s[size]='\0';
}
bool is(const char* str){ // check if something is equal to the string
int i=0;
while((s[i]==str[i])&&(str[i]!='\0'))
i++;
if((i==size)&&(str[i]=='\0'))
return true;
return false;
}
inline char* get(){ // return the string
return s;
}
inline int length(){ // return the size of the string
return size;
}
};
我注意到该set()
函数起作用的唯一方法是在其中放置一个显式字符串或没有数组。例如。
// This works
printf("\nTest1\n");
hstring test;
char tmp_c[50];
scanf("%s",tmp_c);
test.set(tmp_c);
printf("%s\n",test.get());
// This works
printf("\nTest2\n");
hstring test2[2];
test2[0].set("Hello ");
test2[1].set("world!");
printf("%s %s\n",test2[0].get(),test2[1].get());
// This works
printf("\nTest3\n");
hstring test3[2];
scanf("%s",tmp_c);
test3[0].set(tmp_c);
scanf("%s",tmp_c);
test3[1].set(tmp_c);
printf("%s %s\n",test3[0].get(),test3[1].get());
// This, what I want to do, does NOT work
printf("\nTest4\n");
hstring *test4 = (hstring *)malloc(2*sizeof(hstring));
for(int i=0;i<2;i++){
scanf("%s",tmp_c);
test4[i].set(tmp_c);
}
printf("%s %s",test4[0],test4[1]);
free(test4);
我对为什么第四个测试没有正确运行感到困惑。它编译但在到达 test4 并尝试在.set()
函数中重新分配内存时崩溃。我收到“访问冲突读取位置”错误,这让我认为我在不应该写/读的地方;但是,我无法确定确切的原因(尽管我可以告诉导致错误的行是s=(char*)realloc((void *)s,size*sizeof(*s));
在尝试重新分配字符数组的大小时。有人注意到我忽略的问题吗?