首页 > 其他 > 详细

9.1 作用域 static extern malloc relloc

时间:2014-09-04 01:23:07      阅读:299      评论:0      收藏:0      [点我收藏+]
windows里命令行参数
只有可执行程序的时候,可以把文件拖拽到可执行程序上面
相当于 把文件名当参数传递了


变量作用域:
    1. #include <stdio.h>
    2. #include <string.h>
    3. int main()
    4. {
    5. int i = 10;
    6. while( i-- ) //这个i是上面的i,所以只会输出10次
    7. {
    8. int i = 0;    //去掉这一句,结果会变成一个死循环,会无限输出9
    9. printf("i = %d\n" , i++);
    10. }
    11. return 0;
    12. }
bubuko.com,布布扣


指针指向一个局部的变量:
    1. #include <stdio.h>
    1. #include <string.h>
    2. int main()
    3. {
    4. int *p = NULL;
    5. {
    6. int i = 100;
    7. p = &i;
    8. }
    9. *p = 10;
    10. printf("*p = %d\n" , *p);
    11. return 0;
    12. }
bubuko.com,布布扣
结果是正确的,但是极其不建议这样使用



register寄存器变量 不能取其地址
    1. #include <stdio.h>
    1. #include <string.h>
    2. int main()
    3. {
    4. //int i = 10;
    5. register int i = 10;
    6. printf("%p\n",&i); //编译就不通过
    7. return 0;
    8. }


static 静态变量:

static虽然在块作用域内,但在程序刚加载的时候就存在了,并且只初始化了一次,在内存中位于静态区。
不过块作用域外面还是无法访问到
    1. int main()
    2. {
    3. while( i-- )
    4. {
    5. static int i = 0;
    6. }
    7. return 0;
    8. }

两个不同文件之间, static用来限制变量只在当前文件有效:
a.c
    1. int a = 5;
    2. int main()
    3. {
    4. printf("%d\n" , a);
    5. return 0;
    6. }
b.c
    1. int a = 10;
编译报错,`a‘被多次定义
解决方法在a.c文件里 int前面加个static
访问的就是当前这个文件的a,即输出5
bubuko.com,布布扣

如果两个文件都有static,说明两个文件内都有a这个变量
a.c
    1. #include <stdio.h>
    2. static int a = 5;
    3. int main()
    4. {
    5. printf("%d\n" , a);
    6. return 0;
    7. }
b.c
    1. static int a = 10;
结果也是5


两个不同文件之间, extern引用同一个变量:
a.c
    1. #include <stdio.h>
    2. int main()
    3. {
    4. printf("%d\n" , a);
    5. return 0;
    6. }
b.c
    1. int a = 10;
编译报错,找不到a

解决方法在a.c里全局变量里加入int a 或者 extern int a  或者 extern a 只进行一个声明
    1. #include <stdio.h>
    2. extern int a;
    3. int main()
    4. {
    5. printf("%d\n" , a);
    6. return 0;
    7. }
或者在a.c局部变量里 extern int a 或者 extern a    注意 这里直接int a 不行 ,就相当于定义了一个未初始化的局部变量;
    1. #include <stdio.h>
    2. int main()
    3. {
    4. extern int a;
    5. printf("%d\n" , a);
    6. return 0;
    7. }
bubuko.com,布布扣


两个不同文件之间  函数声明引用同一个函数:

下面可以正确执行,但是建议在a.c里 声明一下 func ,就是函数的原型
a.c
    1. #include <stdio.h>
    2. void func(); //省略一样正确执行
    3. int main()
    4. {
    5. func();
    6. return 0;
    7. }
b.c
    1. #include <stdio.h>
    2. void func()
    3. {
    4. printf("func\n");
    5. }
bubuko.com,布布扣
如果在b.c文件里的func函数前面加个static,那么就会访问不到这个函数


因此可以得出结论
不同文件之间 使用同一个函数    需要函数声明   
不同文件之间 使用同一个变量    需要extern



全局变量和静态变量:
注意,全局变量和静态变量,不初始化的时候,系统会自动初始化为0
    1. #include <stdio.h>
    2. int a;
    3. int main()
    4. {
    5. printf("%d\n" , a);
    6. return 0;
    7. }
bubuko.com,布布扣



内存栈区是从高地址到低地址,和堆顺序相反
    1. #include <stdio.h>
    2. void test(int a , int b)
    3. { //注意,参数是在这个位置才开始入栈,不是在main函数调用时入的
    4. printf("%p , %p\n" , &a , &b); //注意,函数形参也是在栈区,形参是从右到左入栈,所以右面的参数地址高于左边的参数地址
    5. }
    6. int main()
    7. {
    8. int a = 10 ;
    9. int b = 20;
    10. printf("%p , %p\n" , &a , &b);
    11. test( a , b);
    12. return 0;
    13. }
bubuko.com,布布扣


free一个函数返回的指针,因为地址一样:
    1. #include <stdio.h>
    2. #include <stdlib.h>
    3. #include <string.h>
    4. char *test()
    5. {
    6. char *s = malloc(sizeof(char) * 10);
    7. printf("s = %p\n" , s);
    8. strcpy( s , "hello");
    9. return s;
    10. }
    11. int main()
    12. {
    13. char *p = test();
    14. printf("%s\n",p);
    15. printf("p = %p\n" , p);
    16. free(p); //这种情况完全是可以free的,因为返回的地址和你要释放的地址是一个地方
    17. return 0;
    18. }
bubuko.com,布布扣

函数参数指针的类型,严重错误,加强理解
    1. #include <stdio.h>
    2. #include <stdlib.h>
    3. #include <string.h>
    4. void test( char * p)
    5. {
    6. p = malloc(sizeof(char) * 10);
    7. strcpy( p , "hello");
    8. printf("%p\n",p);
    9. }
    10. int main()
    11. {
    12. char *s = NULL;
    13. test(s);
    14. printf("%p\n",s);
    15. printf("%s\n" , s);
    16. return 0;
    17. }
这个严重新手级的错误,你传递的指针只是传递的当前的NULL,新开辟的内存返回地址,你不知道
bubuko.com,布布扣

解决方案有三种:

第一种解决方案是把传递指针的地址     上策
    1. #include <stdio.h>
    2. #include <stdlib.h>
    3. #include <string.h>
    4. void test( char ** p)
    5. {
    6. *p = malloc(sizeof(char) * 10);
    7. strcpy( *p , "hello");
    8. printf("%p\n",*p);
    9. }
    10. int main()
    11. {
    12. char *s = NULL;
    13. test(&s);
    14. printf("%p\n",s);
    15. printf("%s\n" , s);
    16. free(s);
    17. return 0;
    18. }
bubuko.com,布布扣

第二种解决方案是把指针返回。     中策
    1. #include <stdio.h>
    2. #include <stdlib.h>
    3. #include <string.h>
    4. char * test( char * p)
    5. {
    6. p = malloc(sizeof(char) * 10);
    7. strcpy( p , "hello");
    8. printf("%p\n",p);
    9. return p;
    10. }
    11. int main()
    12. {
    13. char *s = NULL;
    14. s = test(s);
    15. printf("%p\n",s);
    16. printf("%s\n" , s);
    17. free( s );
    18. return 0;
    19. }
bubuko.com,布布扣

第三种解决方案是在main函数里开辟      下策
    1. #include <stdio.h>
    2. #include <stdlib.h>
    3. #include <string.h>
    4. void test( char * p)
    5. {
    6. strcpy( p , "hello");
    7. printf("%p\n",p);
    8. }
    9. int main()
    10. {
    11. char *s = NULL;
    12. s = malloc(sizeof(char) * 10);
    13. test(s);
    14. printf("%p\n",s);
    15. printf("%s\n" , s);
    16. free(s);
    17. return 0;
    18. }
bubuko.com,布布扣


malloc的应用:
    1. #include <stdio.h>
    2. #include <string.h>
    3. int main()
    4. {
    5. int *p = malloc(sizeof(int) * 5);
    6. memset(p, 0, sizeof(p)); //注意这里只把4个字节的内存清零了
    7. }
bubuko.com,布布扣

sizeof(p)      p是个纯指针,不是数组名, 两者sizeof有区别             
解决方法:
memset(p, 0, sizeof(int) * 5);
bubuko.com,布布扣

realloc的应用:动态添加字符串
    1. #include <stdio.h>
    2. #include <stdlib.h>
    3. #include <string.h>
    4. void init_str( char **p )
    5. {
    6. *p = malloc( sizeof(char) * 10 );
    7. memset( *p , 0 ,sizeof(char) * 10 );
    8. strcpy( *p , "hello" );
    9. }
    10. char* append_str( char *p , const char * s)
    11. {
    12. p = realloc( p , strlen(p) + strlen(s) + 1);
    13. memset( p+strlen(p) , 0 , strlen(s)+1); //这是把申请的新内存清零
    14. strcat(p,s);
    15. return p;
    16. }
    17. int main()
    18. {
    19. char *s = NULL;
    20. init_str( &s );
    21. s = append_str( s , " world");
    22. printf("%s\n" , s);
    23. return 0;
    24. }
先malloc得到一块新的内存地址,都是垃圾值
bubuko.com,布布扣
init_str 初始化  先把所有内存清零
bubuko.com,布布扣
 然后strcpy hello
bubuko.com,布布扣
realloc 申请内存,不过新申请的内存还是垃圾值。
bubuko.com,布布扣
通过memset把realloc申请的新内存 清零
bubuko.com,布布扣
通过strcat 连接两个字符串
bubuko.com,布布扣
bubuko.com,布布扣
realloc新增加的的不会清0,需要自己清理 
解决方法: 
memset( p+strlen(p) , 0 , strlen(s)+1);


realloc缩小内存:
    1. #include <stdio.h>
    1. #include <string.h>
    1. #include <stdlib.h>
    2. int main()
    3. {
    4. char *p = malloc(sizeof(char) * 20);
    5. memset(p, 0, 20);
    6. strcpy(p , "123456789");
    7. p = realloc(p , 5);
    8. printf("%s\n",p);
    9. }
bubuko.com,布布扣
bubuko.com,布布扣
bubuko.com,布布扣
可以得出realloc缩小内存的情况,原来的值都会变成垃圾值。如果需要输出正常,要在最后修改成\0



realloc的其他用法:

char *p = realloc ( NULL , 5 );  等于   char *p  = malloc( 5 );





9.1 作用域 static extern malloc relloc

原文:http://www.cnblogs.com/l6241425/p/3955052.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!