摘要: 类与结构的实例比较 类与结构的差别 如何选择结构还是类 一.类与结构的示例比较: 结构示例: public struct Person { string Name; int height; int weight public bool overWeight() { //implement something } } 类示例: public cl... 阅读全文
posted @ 2006-04-02 20:59 New Yang Bo Element 阅读(390) 评论(0) 推荐(0) 编辑