摘要: int (*pf)(void); int f(void) { pf = &f; // 没问题 pf = ***f; // 取址? pf(); // 函数指针可以调用? (****pf)(); // 这又是什么? (***************f)(); // 这个够变态了吧? } 阅读全文
posted @ 2018-09-23 20:40 友哥 阅读(134) 评论(0) 推荐(0) 编辑
摘要: https://coolshell.cn/articles/11466.html 阅读全文
posted @ 2018-09-23 11:55 友哥 阅读(166) 评论(0) 推荐(0) 编辑
摘要: c++数组不支持多态 https://coolshell.cn/articles/9543.htmlwhy gcc in c++ https://airs.com/ian/cxx-slides.pdfc++坑多吗 https://coolshell.cn/articles/7992.htmlwhy 阅读全文
posted @ 2018-09-23 09:21 友哥 阅读(626) 评论(1) 推荐(0) 编辑