摘要: 上代码: 1 #include <iostream> 2 #include <vector> 3 using namespace std; 4 5 class Item 6 { 7 private: 8 int Key; 9 public:10 Item(int value):Key(value){}11 int getKey()12 {13 return Key;14 }15 void setKey(const int &K)16 {17 this->Key = K;18 }19 };20 21... 阅读全文
posted @ 2013-05-29 19:58 Air Support 阅读(203) 评论(0) 推荐(0)