| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 909 人关注过本帖
标题:strcpy() 在里面的意思我有点糊涂了
取消只看楼主 加入收藏
dang800919
Rank: 1
等 级:新手上路
帖 子:47
专家分:0
注 册:2005-12-5
收藏
 问题点数:0 回复次数:0 
strcpy() 在里面的意思我有点糊涂了
#include<iostream>
#include<string>
#include<cstring>
using namespace std;
class String
{
public:
String& operator+=(const String&);
String& operator+=(const char*);
int size() {return _size;}
char* c_str() {return _String;}
private:
int _size;
char* _String;
};
inline String& String::operator+=(const String &rhs)
{
if(rhs._String)
{
String tmp(*this);
_size = _size + rhs._size;
delete [] _String;
_String = new char[_size+1];
strcpy(_String,tmp._String);
strcpy(_String + tmp._size,rhs._String); // 这条语句 的意思 ....不太明白了...
}
return *this;
}
inline String& String::operator+=(const char *s)
{
if(s)
{
String tmp(*this);
_size = _size + strlen(s);
delete[] _String;
_String = new char[_size+1];
strcpy(_String,tmp._String);
strcpy(_String + tmp._size,s);
}
return *this;
};
搜索更多相关主题的帖子: String strcpy operator rhs 糊涂 
2006-02-22 23:15
快速回复:strcpy() 在里面的意思我有点糊涂了
数据加载中...
 
   



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

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