您的位置:首页 > 编程语言 > C语言/C++

关于C/C++学习的一些网站链接

2014-01-10 05:36 1341 查看
基础入门类:

  首推cplusplus.com 的C++ Tutorials, 这里可以找到所有C++的基础和重要特性 : http://www.cplusplus.com/doc/tutorial/

  英文看的吃力的可以看西电的微学苑 http://see.xidian.edu.cn/cpp/biancheng/cpp/

  C语言中文网 http://see.xidian.edu.cn/cpp/

  C Programming Boot Camp http://gribblelab.org/CBootcamp/

  C++ Tutorial http://www.cprogramming.com/tutorial/c++-tutorial.html

调试:

  Using Valgrind to Find Memory Leaks and Invalid Memory Use http://www.cprogramming.com/debugging/valgrind.html

  Debugging Under Unix:
gdb
Tutorial http://www.cs.cmu.edu/~gilpin/tutorial/

  Debugging Memory Errors in C/C++ http://scottmcpeak.com/memory-errors/

内存管理:

  Memory : Stack vs Heap http://gribblelab.org/CBootcamp/7_Memory_Stack_vs_Heap.html  

  CSDN 文章 内存管理概述、内存分配与释放、地址映射机制(mm_struct, vm_area_struct)、malloc/free 的实现

    /article/1352276.html

编译:

  见到过的最好的关于unix下C/C++编程环境,编译和调试原理及常用工具gdb的教程,不过是法语版的,有兴趣还是可以看看,不懂的可以google translate一下,能看懂那些命令就行,自己再琢磨下就学到手了:http://www.cmi.univ-mrs.fr/~contensi/coursC/index.php?section=env&page=comp

  这里有一篇The Florida State University 的课程习题pdf,也是循序渐进的介绍了编译和调试的原理和工具使用,英文版的:

    http://people.sc.fsu.edu/~jburkardt/classes/isc_2012/c_program_compilation.pdf

  看懂以上两篇就够了

  Autodependencies with GNU make http://scottmcpeak.com/autodepend/autodepend.html

  新加坡南洋理工大学的GCC and Make Compiling, Linking and Building C/C++ Applications

    http://www3.ntu.edu.sg/home/ehchua/programming/cpp/gcc_make.html

  Linux makefile 教程 非常详细,且易懂 /article/2868822.html

  An introduction to Makefiles From Duke University http://www.cs.duke.edu/courses/cps108/doc/makefileinfo/html/Makefiles.html#toc1

http://www.openismus.com/documents/

以后碰到好的学习网站还会再继续添加的, 觉得好的话记得点赞哟~
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: