摘要:
很好的一个示范例子,设计到类设计,模版,继承,封装。麻雀虽小五脏俱全,废话少说,来看代码:主程序: 1 #include <iostream> 2 3 #include "rcstring.h" 4 5 int main(void) 6 { 7 String s("hello"); 8 9 std::cout << s[2] << std::endl;10 11 std::cout << "Hello World!" << std::endl;12 13 return 0;1 阅读全文