Interpretation of the concept of C ++ pointer and pointer
Interpretation of the concept of C ++ pointerUltra-detailed
A pointer is a special variable. The value stored in it is interpreted as an address in the memory. To understand a pointer, we need to understand four aspects of the
Overviewfor beginners, pointers are always a very difficult concept to understand in C language. In this article, we'll explain the difference between constant pointers, pointer constants, const pointer to const (PS: The landlord thinks this can be translated to constant pointers to constants)
Constant pointerLet's first understand what a constant pointer is. A
To modify the value of a variable, you need to use a pointer to the variable type as a reference to the argument or variable. If the variable is a generic type of variable, such as int, you need to use a pointer of type int int * As the argument or the reference type of int int. However, if the variable type is a pointer type, such as char*, you need to use a
This is the best entry-level article I've ever seen on pointers, which allows beginners to master complex pointer manipulations in a very short period of time. Although, now the Java, C # and other languages have been canceled pointers, but as a C + + programmer, Pointer direct operation of memory, in the data operation has a fast speed, save memory and other advantages, is still a lot of C + + Programmer's
1. Summary of data types of pointersAbout the data type of the pointer
definition
meaning
int i;
Defining Shaping variables
int *p;
Defines a pointer variable p that only wants integer data
int a[n];
Defines an array of integers a, which has n elements
int *p[n];
Defines the pointer
A pointer is a special variable, and the value stored in it is interpreted as an address in memory . To make sense of a pointer, you need to understand the four aspects of the pointer:
The type of pointer,
The type to which the pointer is pointing,
The value
Distinguish function pointer and pointer function _.
There are a lot of complaints about the constantly changing handling of pointers and arrays, but it should be clear now. With the foundation of the previous lecture, the content of this lecture is relatively easy to understand.
1. pointer to the function (function pointer
First of all, say what is a pointer, as long as you understand the meaning of the pointer, you will understand the meaning of NULL.
Suppose there is a statement int a=10;
The compiler then opens up 1 integer units in memory to hold the variable a, and we assume the address of the integral unit in memory is 0x1000;
So the memory 0x1000 unit holds data 10, and every time we visit a, it's actually 10 of the
This article mainly introduces the C language of constant pointer and pointer constant difference, the need for friends can refer to
A constant pointer refers to a pointer to a constant, as the name suggests, is the pointer to a constant, that is, it can not point to the va
In this paper, some techniques for understanding C + + pointer arrays, array pointers, array names, and two-dimensional arrays are analyzed in detail. is a more important concept, I believe that for everyone's C + + program design has a certain role in helping.
First, about the array name
Suppose you have an array:
int a[3] = {1, 2, 3}
1. The array name represents the address of the first element of the array , noting that not the arra
A constant pointer to an object
Declare the pointer variable to the object as a const and initialize it so that the pointer value remains at its initial value and cannot be changed.
Copy Code code as follows:
Time T1 (10,12,15), T2;
Time * Const ptr1=t1;
ptr1=t2;
The general form of a constant point
Transferred from: http://www.cnblogs.com/gmh915/archive/2010/06/11/1756067.htmlOneThis "pointer function" and "function pointer" are easy to mistake in learning arm, so today, I want to make it clear at once and find some information, first of all, the definition between them:1, pointer function refers to a function with a po
Reference http://blog.csdn.net/touch_2011/article/details/6966980 1, overview pointer array: An array of pointers can be said to be "an array of pointers," first of which is an array, and secondly, "pointers "Modifies this array, meaning that all elements of this array are pointer types, and in 32-bit systems, pointers are four bytes." Array pointers: Array pointers can be said to be "pointers to arrays", f
First, read the following eight questions. If you can do it without reading any materials. Congratulations! It should be okay. Because the complex combinations are all changed from the above eight types.
1. Define an integer
2. Define a pointer to the integer number
3. Define a pointer to the pointer, which is a pointer
Annoying function pointer (2), annoying function pointer
Link: http://www.cnblogs.com/AnnieKim/archive/2011/12/04/2275589.html
I have previously written an annoying function pointer (I), which summarizes the declaration, definition, and call of common function pointers, as well as the array of function pointers, and the use of function pointers as return values.
OneI found this "pointer function" and "function pointer" easy to be mistaken in learning arm, so today I want to make it clear and find some information. First, the definition between them:1, pointer function refers to a function with a pointer, that is, the essence is a function.A function return type is a
1. Pointer addition and subtraction operations1) pointer + integer will move backward sizeof (pointer type) * Whole number of memory units2) pointer-integer will move forward sizeof (pointer type) * Whole number of memory units3) Description: The compiler will not check whet
The three nouns, though very raozui, are very accurate. The semantic analysis of Chinese language can easily separate the three conceptual areas.A) constant pointer.Constants are adjectives, pointers are nouns, and pointers are the center of a partial positive structure phrase. In this way, a constant pointer is essentially a pointer, and a constant modifies it, indicating that the
The three nouns, though very raozui, are very accurate. The semantic analysis of Chinese language can easily separate the three conceptual areas.A) constant pointer.Constants are adjectives, pointers are nouns, and pointers are the center of a partial positive structure phrase. In this way, a constant pointer is essentially a pointer, and a constant modifies it, indicating that the
Author: JW. Zhou
Date: 2014/7/2
1. NULL pointer (0/null)
Returning null is equivalent to returning 0, because both null and 0 indicate null pointers. In other words, what is a null pointer is a pointer assigned 0, before initialization, the value is 0. null is a standard macro definition used to indicate NULL pointer c
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.