摘要: public static void main(String[] args) { char[] number =new char[3]; generateNum(number, 0); } public static void printNum(char[] number){ int i=0; while(i<num... 阅读全文
posted @ 2016-12-15 15:42 男子大学生的日常 阅读(187) 评论(0) 推荐(0) 编辑
摘要: Java http://jiangzhengjun.iteye.com/ http://www.cnblogs.com/jiangzhengjun/ 阅读全文
posted @ 2016-03-02 19:33 男子大学生的日常 阅读(181) 评论(0) 推荐(0) 编辑
摘要: http://www.kuqin.com/shuoit/20151231/349758.html 阅读全文
posted @ 2016-03-02 16:53 男子大学生的日常 阅读(98) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2015-12-15 10:50 男子大学生的日常 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 非模板友元templateclass HasFriend{public: friend void report(HasFriend&);};// the following code is necessaryvoid report(HasFriend& hf){ //details}voi... 阅读全文
posted @ 2015-11-24 20:35 男子大学生的日常 阅读(190) 评论(0) 推荐(0) 编辑
摘要: const int* p=nullptr; //p 是一个指向整形常量的普通指针,不能修改该整形常量int* const p=nullptr; //p是一个常量指针,不能修改p的指向const int* q=nullptr; //同2 阅读全文
posted @ 2015-11-24 20:29 男子大学生的日常 阅读(153) 评论(0) 推荐(0) 编辑