----------------------------------------------------------------------Currency.cs
创新互联建站始终坚持【策划先行,效果至上】的经营理念,通过多达10余年累计超上千家客户的网站建设总结了一套系统有效的全网营销推广解决方案,现已广泛运用于各行各业的客户,其中包括:成都水泥搅拌车等企业,备受客户赞扬。
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication4 { //类和结构相似 public struct Currency { private uint dollars; //元 private ushort cents; //分 public Currency(uint i, ushort s)//初始化构造函数 { this.dollars = i; this.cents = s; } public override string ToString() { return string.Format("{0}.{1,2:00}", dollars, cents); } //看情况选择是显示装换还是隐式转换,(uint和ushort都可以隐式转换为float) //重载运算符必须使用public static //implicit 隐式转换 //把Currency对象隐式转换为float类型 public static implicit operator float(Currency c) { return c.dollars + c.cents / 100.0f; } //explicit为显式转换 //把float对象显式转换为Currency类型 public static explicit operator Currency(float f) { checked//溢出则抛出异常 { uint i = (uint)f; ushort s = Convert.ToUInt16((f - i) * 100); return new Currency(i, s); } } } }
----------------------------------------------------------------------主程序
Currency c = new Currency(50, 35); float f = (float)(c); c = (Currency)f; Console.WriteLine(c.ToString()); Console.ReadKey();