zoukankan      html  css  js  c++  java
  • A pointer is a variable whose value is the address of another variable 指针 null pointer 空指针 内存地址0 空指针检验

    小结:

    1、指针的实际值为代表内存地址的16进制数;

    2、不同指针的区别是他们指向的变量、常量的类型;

    https://www.tutorialspoint.com/cprogramming/c_pointers.htm

    #include <stdio.h>
    int main(){
    int var1;
    char var2[10];

    printf("Address of var1 variable: %x ", &var1);
    printf("Address of var2 variable: %x ", &var2);

    printf("Address of var1 variable: %d ", &var1);
    printf("Address of var2 variable: %d ", &var2);
    }

    Address of var1 variable: 240ff24
    Address of var2 variable: 240ff08
    Address of var1 variable: 37814052
    Address of var2 variable: 37814024
    请按任意键继续. . .

    #include <stdio.h>

    int main () {

    int var = 20; /* actual variable declaration */
    int *ip; /* pointer variable declaration */

    ip = &var; /* store address of var in pointer variable*/

    printf("Address of var variable: %x ", &var );

    /* address stored in pointer variable */
    printf("Address stored in ip variable: %x ", ip );

    /* access the value using the pointer */
    printf("Value of *ip variable: %d ", *ip );

    return 0;
    }

    Address of var variable: 240ff24
    Address stored in ip variable: 240ff24
    Value of *ip variable: 20
    请按任意键继续. . .

    #include <stdio.h>

    int main () {

    int *ptr = NULL;

    printf("The value of ptr is : %x ", ptr );

    return 0;
    }

    The value of ptr is : 0
    请按任意键继续. . .

    Pointers in C are easy and fun to learn. Some C programming tasks are performed more easily with pointers, and other tasks, such as dynamic memory allocation, cannot be performed without using pointers. So it becomes necessary to learn pointers to become a perfect C programmer. Let's start learning them in simple and easy steps.

    As you know, every variable is a memory location and every memory location has its address defined which can be accessed using ampersand (&) operator, which denotes an address in memory. Consider the following example, which prints the address of the variables defined −

     Live Demo

    #include <stdio.h>
    
    int main () {
    
       int  var1;
       char var2[10];
    
       printf("Address of var1 variable: %x
    ", &var1  );
       printf("Address of var2 variable: %x
    ", &var2  );
    
       return 0;
    }

    When the above code is compiled and executed, it produces the following result −

    Address of var1 variable: bff5a400
    Address of var2 variable: bff5a3f6
    

    What are Pointers?

    A pointer is a variable whose value is the address of another variable, i.e., direct address of the memory location. Like any variable or constant, you must declare a pointer before using it to store any variable address. The general form of a pointer variable declaration is −

    type *var-name;
    

    Here, type is the pointer's base type; it must be a valid C data type and var-name is the name of the pointer variable. The asterisk * used to declare a pointer is the same asterisk used for multiplication. However, in this statement the asterisk is being used to designate a variable as a pointer. Take a look at some of the valid pointer declarations −

    int    *ip;    /* pointer to an integer */
    double *dp;    /* pointer to a double */
    float  *fp;    /* pointer to a float */
    char   *ch     /* pointer to a character */
    

    The actual data type of the value of all pointers, whether integer, float, character, or otherwise, is the same, a long hexadecimal number that represents a memory address. The only difference between pointers of different data types is the data type of the variable or constant that the pointer points to.

    How to Use Pointers?

    There are a few important operations, which we will do with the help of pointers very frequently. (a) We define a pointer variable, (b) assign the address of a variable to a pointer and (c) finally access the value at the address available in the pointer variable. This is done by using unary operator * that returns the value of the variable located at the address specified by its operand. The following example makes use of these operations −

     Live Demo

    #include <stdio.h>
    
    int main () {
    
       int  var = 20;   /* actual variable declaration */
       int  *ip;        /* pointer variable declaration */
    
       ip = &var;  /* store address of var in pointer variable*/
    
       printf("Address of var variable: %x
    ", &var  );
    
       /* address stored in pointer variable */
       printf("Address stored in ip variable: %x
    ", ip );
    
       /* access the value using the pointer */
       printf("Value of *ip variable: %d
    ", *ip );
    
       return 0;
    }

    When the above code is compiled and executed, it produces the following result −

    Address of var variable: bffd8b3c
    Address stored in ip variable: bffd8b3c
    Value of *ip variable: 20
    

    NULL Pointers

    It is always a good practice to assign a NULL value to a pointer variable in case you do not have an exact address to be assigned. This is done at the time of variable declaration. A pointer that is assigned NULL is called a nullpointer.

    The NULL pointer is a constant with a value of zero defined in several standard libraries. Consider the following program −

     Live Demo

    #include <stdio.h>
    
    int main () {
    
       int  *ptr = NULL;
    
       printf("The value of ptr is : %x
    ", ptr  );
     
       return 0;
    }

    When the above code is compiled and executed, it produces the following result −

    The value of ptr is 0
    

    In most of the operating systems, programs are not permitted to access memory at address 0 because that memory is reserved by the operating system. However, the memory address 0 has special significance; it signals that the pointer is not intended to point to an accessible memory location. But by convention, if a pointer contains the null (zero) value, it is assumed to point to nothing.

    To check for a null pointer, you can use an 'if' statement as follows −

    if(ptr)     /* succeeds if p is not null */
    if(!ptr)    /* succeeds if p is null */
    

    Pointers in Detail

    Pointers have many but easy concepts and they are very important to C programming. The following important pointer concepts should be clear to any C programmer −

    Sr.No.Concept & Description
    1 Pointer arithmetic

    There are four arithmetic operators that can be used in pointers: ++, --, +, -

    2 Array of pointers

    You can define arrays to hold a number of pointers.

    3 Pointer to pointer

    C allows you to have pointer on a pointer and so on.

    4 Passing pointers to functions in C

    Passing an argument by reference or by address enable the passed argument to be changed in the calling function by the called function.

    5 Return pointer from functions in C

    C allows a function to return a pointer to the local variable, static variable, and dynamically allocated memory as well.

  • 相关阅读:
    Springboot+shiro配置笔记+错误小结(转)
    Shiro的Filter机制详解---源码分析(转)
    最快最简单的部署本地Apache+PHP+MySQL神器USBWebserver(转)
    shiro简单配置(转)
    重写ajax方法实现异步请求session过期时跳转登录页面(转)
    jquery实现ajax提交form表单的方法总结(转)
    使用ajax提交form表单,包括ajax文件上传
    Spring Boot Freemarker特别篇之contextPath【从零开始学Spring Boot】(转)
    Uncaught SyntaxError: Unexpected token <
    Qt5.5.0在Windows下静态编译(VS2013修改参数以后才能支持XP)good
  • 原文地址:https://www.cnblogs.com/rsapaper/p/10439829.html
Copyright © 2011-2022 走看看