C# 运算符重载
摘要:重载运算符的类声明:struct Vector { public double x, y, z; public Vector(double x, double y, double z) { this.x = x; this.y = y; this.z = z; } public Vector(Vector rhs) { x = this.x; y = this.y; z = this.z; } p...
阅读全文
posted @
2009-07-30 11:23
~数字人生~
阅读(196)
推荐(0)