jeans chen
we've got them by the balls
摘要: 速度 #include using namespace std;class TextBlock{private: string text;public: TextBlock(string s) { text = s; } const char& operator[](size_t position) const {return text[position]; } char& operator[](size_t position) {return text[position]; }};int main(){ TextBlock... 阅读全文
posted @ 2013-07-29 16:06 jeans chen 阅读(198) 评论(0) 推荐(0)