| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1063 人关注过本帖
标题:重载问题求救
取消只看楼主 加入收藏
想你的天空
Rank: 2
等 级:新手上路
威 望:5
帖 子:610
专家分:0
注 册:2004-12-30
收藏
 问题点数:0 回复次数:0 
重载问题求救
//建立一个异常类来处理:在输入学生类stu对象的数据时,检测输入成绩是否正确     yes
#include<iostream.h>
#include<string.h>
class String
 {    public:
      String operator +(const String&);
   String operator =(const String&);
      void input();
   void print() const;
     private:
       char name[20];
 };
String String::operator +(const String& first)
{
String temp;
//strcat(temp.name,name);
strcat(temp.name,(first.name));
return temp;
}
String String::operator =(const String& first)
{
 for(int x=0;x<20;x++)
  name[x]=first.name[x];
    return *this;
}
void String::input()
{
 cout<<"输入字符串:"<<endl;
 cin>>name;
}
void String::print() const
{
cout<<name<<endl;
}
void main()
 {  String a,b,c;
    a.input();
     b.input();
    c=a+b;
    c.print();
    a=b;
    a.print();
 }            运行时候出了点问题
搜索更多相关主题的帖子: 重载 
2005-03-08 20:32
快速回复:重载问题求救
数据加载中...
 
   



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

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