| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 589 人关注过本帖
标题:关于字符串替换问题~~ 求助
取消只看楼主 加入收藏
clumt
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2010-6-6
结帖率:100%
收藏
已结贴  问题点数:5 回复次数:0 
关于字符串替换问题~~ 求助
字符串的替换问题  ~~   求助 帮忙改下!
#include <iostream.h>
#include <string.h>
class String
{
public:
    String(){p=NULL;}
    ~String(){}
    String(char *str);
    strcpy (String &string1,String &string2);
    void display();
private:
    char *p;

};
String::String(char *str)
{
    p=str;
}
void String::display ()
{
    cout<<p;
}



String::strcpy (String &string1,String &string2)
{
    cout<<strcpy(string1,string2);
}


        

int main()
{
    String string1("China"),string2("Amercia"),string3("Book"),string4("China");
   
    char *p=strcpy(string1,string2);
    return 0;
}
  结果显示
error C2664: 'strcpy' : cannot convert parameter 1 from 'class String' to 'char *'
            No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called
要求用到类~~~~ 怎么改正啊??
搜索更多相关主题的帖子: 串替 字符 
2010-06-09 13:15
快速回复:关于字符串替换问题~~ 求助
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.022639 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved