会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
狼王爷
勤奋不是万能的,但不勤奋起码万万不能!
首页
新随笔
订阅
管理
2021年5月17日
c# operator explicit implicit
摘要: //1、重载内置运算符 public class Salary { public int RMB { get; set; } public static Salary operator +(Salary s1, Salary s2) { s2.RMB += s1.RMB; return s2; }
阅读全文
posted @ 2021-05-17 17:29 狼王爷
阅读(67)
评论(0)
推荐(0)
编辑