注册 登录
编程论坛 VC++/MFC

程序老有问题,求大神解答,求助,急

BAILAOSHI 发布于 2015-11-28 00:26, 1965 次点击
这是我的程序
使用运算符重载,实现两字符相加
#include<str.h>
 const int MAXSIZE=100;
 class String
{
private:
    char buffer[MAXSIZE];
    int len;
public:
    String(char s_str);
    String operator+(char c_str);
    void print();
};
#include<iostream>
using namespace std;
#include<string.h>
int main()
{
    String s1("C/C++");
    s1=s1.operator+("program");                //这个程序有问题
    s1.print();

}
String::String(char s_str)
{
    strcpy(buffer,s_str);
    len=strlen(bufffer);
}
String String::operator+(char c_str)
{
    String add;
    add.len=strlen(buffer)+strlen(c_str)+1;
    if(add.len>MAXSIZE)
    {
        cout<<"超出范围"<<endl;
        strcpy(add.buffer,buffer);
        add.len=strlen(buffer);
    }
    else
    {
        strcpy(add.buffer,buffer);
        strcat(add.buffer,c_str);
        return add;
}
void String print()
{
    cout<<"相加后的字符串为;"<<endl;
    cout<<buffer<<endl;
    cout<<"字符串长度为;"<<endl;
    cout<<len<<endl;
}
编译之后老有问题;
fatal error: str.h: No such file or directory
哪位大哥知道请告诉一下,谢谢了
3 回复
#2
hellovfp2015-11-28 00:56
简单些,你把#include<str.h>下面的11行代码移到main上面,再去掉#include<str.h>这行编译看看。



#3
BAILAOSHI2015-11-28 03:25
谢谢,终于找到问题了。也有我的不细心,不过必须删掉#include<str.h>。谢谢了!
#4
BAILAOSHI2015-11-28 03:27
这是更正后的的程序,希望能给大家借鉴一下。
#include<iostream>
using namespace std;
#include<string.h>
const int MAXSIZE=100;
 class String
{
private:
    char buffer[MAXSIZE];
    int len;
public:
    String(char *s_str);
    String();
    String operator+(char *c_str);//为什么要用*呢?
    void print();
};
int main()
{
    String s1("C/C++");
    s1=s1.operator+("program");                //这个程序有问题
    s1.print();

}
String::String(char *s_str)
{
    strcpy(buffer,s_str);
    len=strlen(buffer);
}
String::String()
{
    len=0;
}
String String::operator+(char *c_str)
{
    String add;
    add.len=strlen(buffer)+strlen(c_str)+1;
    if(add.len>MAXSIZE)
    {
        cout<<"超出范围"<<endl;
        strcpy(add.buffer,buffer);
        add.len=strlen(buffer);
    }
    else
    {
        strcpy(add.buffer,buffer);
        strcat(add.buffer,c_str);
    }
        return add;
}
void String::print()
{
    cout<<"相加后的字符串为;"<<endl;
    cout<<buffer<<endl;
    cout<<"字符串长度为;"<<endl;
    cout<<len<<endl;
}
1