静态库:程序编译链接的时候链接到可执行文件,这个链接就是拷贝,拷贝完过后就不需要静态库了
动态库:程序在运行的时候才去链接动态库的代码,多个程序共享使用库的代码,你的可执行程序如果是动态链接的话,你的程序涉及到外部函数调用的话,他里面写的是外部函数调用的地址,外部函数的具体实现还是在库里面
这里有个注意的点库函数不能使用mian函数,要不然别人调用你的库就会出现二个库函数,到时候就报错了
下面搞二个.c文件和二个.h文件,
mymath.c
#include"mymath.h"
int addToVal(int from, int to)
{
assert(from <= to);
int result = 0;
for(int i = from; i <= to; i++)
{
result +=i;
}
return result;
}
mymath.h
#pragma once
#include
#include
//从from 到 to 累加到reuslt 再到 return
extern int addToVal(int from, int to);
mypint.c
#include"myprint.h"
void Print(const char *msg)
{
printf("%s :%lld\n",msg, (long long)time(NULL));//时间戳
}
myprint.h
#pragma once
#include
#include
extern void Print(const char *msg);
如果我把我所有的.o给别让人,别人能链接使用吗?
链接:不就是把所有的.o链接成链接形成一个可执行程序!
如果我把我所有的.o给别让人,别人能链接使用吗&