摘要: c++primer 页数:376-379 备份, 很有嚼头#include #include #include using namespace std;class Screen{ public: typedef string::size_type index; Screen(index r, index c) : row(r), col(c), contents(r * c, 0) {}; Screen& set(index r, index c, char val); Screen& set(char val); S... 阅读全文
posted @ 2013-12-02 22:41 jihite 阅读(868) 评论(0) 推荐(0)