1。什么是shell?书上说是windows的“外壳”,能否解释一下到底是什么意思??
2。讲一下c runtime library是怎么来的。
3。什么是makefile??

解决方案 »

  1.   

    The Microsoft® Windows® user interface (UI) provides users with access to a wide variety of objects necessary for running applications and managing the operating system. The most numerous and familiar of these objects are the folders and files that reside on computer disk drives. There are also a number of virtual objects that allow the user to do tasks such as sending files to remote printers or accessing the Recycle Bin. The Shell organizes these objects into a hierarchical namespace, and provides users and applications with a consistent and efficient way to access and manage objects.
      

  2.   

    意思是说,Shell是用来组织Windows的用户界面的,可以通过Shell访问和管理系统的文件夹和文件等对象。
      

  3.   

    shell 就是给用户操作命令的console,如果你用过linux 就知道了
      

  4.   

    makefile 是针对make 命令的,如果你在写一个很大的项目,里边包含的编译过程会很复杂,
    所以使用makefile 来list出来用make 来执行。
    类似予java的ant ,其实是ant 模仿make的