一些关于vc的问答

源代码在线查看: subject_37201.htm

软件大小: 8176 K
上传用户: RSY527
关键词: 问答
下载地址: 免注册下载 普通下载 VIP

相关代码

				
				序号:37201 发表者:刘记 发表日期:2003-04-22 21:07:40
				主题:关于结构体重载
				内容:请问各位高手,struct结构体中的重载运算符如何实现
				返回上页访问论坛
				
				
				答案被接受回复者:tjhe 回复日期:2003-04-22 21:17:23
				内容:与类没什么区别。如:struct mystruct{    int x,y;    mystruct& operator ++(int)    {        x++;y++;        return *this;    }};使用:    mystruct s;    s.x=1;    s.y=2;    s++;
				
				返回上页访问论坛
				
				
				回复者:fanghehe 回复日期:2003-07-07 19:17:56
				内容:对不起,能解释一下mystruct& operator ++(int)是什么意思吗?
				
				返回上页访问论坛
				
				
				回复者:fanghehe 回复日期:2003-07-09 10:33:50
				内容:??请高手指点
				
				返回上页访问论坛
							

相关资源