What are Header Files and Library Files? [duplicate]

荒凉一梦 提交于 2019-12-29 14:59:50

问题


Possible Duplicate:
What's the difference between a header file and a library?

Can anyone tell me what's the actual meaning of a header file and a library file and their difference?

For example we include header file with .h extension in our program and its just the definition but the actual implementation is defined in library files and this is done at linking stage this is what people say but sometimes we include the library files directory too for the programs to generate the exec file for example in posix threads people say to include the -lpthread in the command line but why when we included the header file #include<> why we still need to include the library files too may i know the reason please??


回答1:


Generally, a header file notifies the compiler of certain things (mostly their existence or declarations) so that the compiler can correctly build a single translation unit (such as a single C file).

A library file is the actual executable code that does the work as specified in that header file. This is linked in by the linker to provide the actual functionality (the _definitions rather than just the declarations).

So, in your example, you may have the line:

#include <pthread.h>

which tells the compiler all about the existence of the pthread_mutex_this, pthread_condvar_that and pthread_thread_the_other stuff but doesn't actually provide the implementations of those things.

The -lpthread option tells the linker that it should locate a library based on the pthread name from which it can pull in the actual implementations, in order to forn the final executable.

Similarly, while stdio.h holds information about the I/O stuff, the actual code for it will be in the runtime library (though you rarely have to link that library specifically since the compiler will try to take care of it for you). Because you usually link with the compiler (i.e., the compiler invokes the linker for you), it knows that you're probably going to need the C run time library. If you were to use the linker directly (such as by using the ld command), that probably wouldn't happen, and you'd have to be explicit.




回答2:


Header Files : These are the files that are included at the top of any program. If we use any function inside a program, then the header file containing declaration or definition of that function ,has to be included.Like printf() is defined in stdio.h.So, we must include it (by #include in order to use printf().

Library Files: These are the files which the compiler uses in order to define the functions which have been used in the program and had been declared inside the header file.Like, printf() has its complete definition ,like how it will work etc. in an I/O library! So, the compiler uses that library to get the machine code for printf.

Difference:

  1. Header files are TEXT files while library files are BINARY. This means, we can read and modify the header file but not the library!
  2. Header file is in C language while the library is in machine language!
  3. Header file has to be included by the programmer while the compiler automatically relates the library file(s) with the program!



回答3:


The header files only include the definition of the functions that you would use in a file where the header file is being included.

Library files comprise the actual implementation of the functions that you will be using in your program.

The header file is included (copy/pasted) during the preprocessing stage and is compiled as part of the program being written during compilation phase. One has to specify the -lpthread in the command line, so that the linker will know which library to look into for functions used in the program.

Similar Question/Answer on Stackoverflow explaining it in layman terms:

What's the difference between a header file and a library?

Part 2: Why we do not have to always include library files when we have #include?

This might be the case when:

i. The implementation of the functions is included in the header file.

ii. The implementation of the functions is in c files for which you have the source available.

iii. The required libraries are included by your compiler by default e.g., standard c libraries.

NOTE: Here is a reference to what is included in the standard C library, which is included by default by many compilers.



来源:https://stackoverflow.com/questions/6407975/what-are-header-files-and-library-files

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!