摘要: class c { public: returnType functionName (parameter list) const; //这个函数不会修改类成员 const returnType functionName (parameter list); //返回常量 private: ........... }; ... 阅读全文
posted @ 2016-09-12 22:54 KennyRom 阅读(536) 评论(0) 推荐(0) 编辑
摘要: Type(*function(parameter_list)) [dimension] or 使用类型别名 typedef int arr[10]; or using arr=int[10] 阅读全文
posted @ 2016-09-12 19:50 KennyRom 阅读(212) 评论(0) 推荐(0) 编辑