What exactly is a runtime library?

What is a runtime library? I read this and so I have a decent understanding of its purpose, but is it a file? Is this something you can explicitly include as a standard library?

+4
source share
2 answers

First of all, this is the concept : the code necessary to provide language functions on the target platform.

i.e. This realization strlenand feclearexceptand ofstream::operator<<all other standard library functions offered language.

" ", , "" .


, "" ( , ). , :

  • , , (, )

  • (.obj .lib), .

  • (DLL .so),

  • " , "

++ " ".

C, ++ , , fucntionality (, Windows CreateFile fstreams)

( ) .dll .so.

, ​​ , .


, . ( , , , ..), .

: , .

+2

(runtime).

(The Linker ). , , .

(DLL Windows,.so Linux), ( XYZ() ABC.dll). . , , . , . , , - DLL.

+1

Source: https://habr.com/ru/post/1687363/


All Articles