一个程序内存分配:
下图是APUE中的一个典型C内存空间分布图(虚拟内存)
例如:
int g1=0, g2=0, g3=0
int max(int i)
{
int m1=0,m2,m3=0, p_max
static n1_max=0,n2_max,n3_max=0
p_max = (int )malloc(10)
printf("打印max程序地址\n")
printf("in max: 0xx\n\n",max)
printf("打印max传入参数地址\n")
printf("in max: 0xx\n\n",&i)
printf("打印max函数中静态变量地址\n")
printf("0xx\n",&n1_max)//打印各本地变量的内存地址
printf("0xx\n",&n2_max)
printf("0xx\n\n",&n3_max)
printf("打印max函数中局部变量地址\n")
printf("0xx\n",&m1)//打印各本地变量的内存地址
printf("0xx\n",&m2)
printf("0xx\n\n",&m3)
printf("打印max函数中malloc分配地址\n")
printf("0xx\n\n",p_max)//打印各本地变量的内存地址
if(i) return 1
else return 0
}
int main(int argc, char **argv)
{
static int s1=0, s2, s3=0
int v1=0, v2, v3=0
int p
p = (int )malloc(10)
printf("打印各全局变量(已初始化)的内存地址\n")
printf("0xx\n",&g1)//打印各全局变量的内存地址
printf("0xx\n",&g2)
printf("0xx\n\n",&g3)
printf("======================\n")
printf("打印程序初始程序main地址\n")
printf("main: 0xx\n\n", main)
printf("打印主参地址\n")
printf("argv: 0xx\n\n",argv)
printf("打印各静态变量的内存地址\n")
printf("0xx\n",&s1)//打印各静态变量的内存地址
printf("0xx\n",&s2)
printf("0xx\n\n",&s3)
printf("打印各局部变量的内存地址\n")
printf("0xx\n",&v1)//打印各本地变量的内存地址
printf("0xx\n",&v2)
printf("0xx\n\n",&v3)
printf("打印malloc分配的堆地址\n")
printf("malloc: 0xx\n\n",p)
printf("======================\n")
max(v1)
printf("======================\n")
printf("打印子函数起始地址\n")
printf("max: 0xx\n\n",max)
return 0
}
打印结果:
ELF目标文件格式的最前端是 ELF****文件头(****ELF Header****) ,
包含了描述整个文件的基本属性,如ELF版本、目标机器型号、 程序入口地址 等
3 加载:
setwd()只是更改工作目录,这个只对读取和保存数据有效,安装包跟这个无关。
你的package并不是安装在显示的那个文件路径,只是下载放在那里。安装的路径用
.libpaths()
复制代码
查看。
然后可以添加新的路径,用.libpaths()。
这里更改的,才是更改了安装包的路径。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)