From: http://blog.csdn.net/linyaoxin/article/details/3160977
Const int * a, int const * a, int * const A, difference, pointer array, array pointer, declaration and definition
Several confusing concepts are recorded hereI. ====== method declared in C language, help ==============================(Http://bbs.chinaunix.net/viewthread.php? Tid = 683372 extra = Page % 3d1)------------------- English version ----
This article uses several postsArticleThe content is slightly modified:
I,
Why can a string be assigned to a character pointer variable in C?
Char * P, A = '5 ';
P = A; // It is obviously correct,
P = "ABCD"; // but why can I assign a value like this ??
Q: I have never understood why I can assign a String constant to a character pointer variable. Please give me some advice!
A:Double quota
The pointer has two attributes: the address and length pointing to the variable/object, but the pointer only stores the address. The length depends on the pointer type.The compiler varies the addressing range according to the pointer type from the pointer to the address to t
Tips for understanding pointer arrays, array pointers, array names, and two-dimensional arrays ., Pointer two-dimensional array
Tips for understanding pointer arrays, array pointers, array names, and two-dimensional arrays./************* About the array name ***************/Int a [3] = {1, 2, 3}1. the array name represents the address of the first element of the
C ++ auto_ptr smart pointer and auto_ptr smart pointer
C ++ auto_ptr smart pointer
In the header file memory, this type is imported through # include
Usage:
Auto_ptr
For example, if the type is int, the specific definition is as follows:
Auto_ptr
For example, if the type is map
Auto_ptr
Of course, you can define and assign values first, as shown below:
Auto_
The pointer is used to allocate dynamic memory for parameters and the double pointer (top) and double dynamic memory.
Dynamic Memory Allocation in C:
Format: Int * pointer;
Pointer = (int *) malloc (100 * sizeof (int ));
The memory can be dynamically allocated in the called function (the function that returns the
Summary of pointer learning and pointer Learning
1/* -------------------------------------- 2 pointer exercises (essence) 3 4 1) First, understand the first address of a variable or array, it refers to the byte address with the smallest address number in the RAM or ROM that stores data. 5 2) the type specifier before the poin
First look at the function pointer int func2 (int x);/* declare a function */int (* q2) (int x);/* declare a function pointer */q2 = func2; /* assign the first address of the func function to the pointer f */int c = (* q2) (3 ); // 3 the usage of the function pointer can be basically illustrated for any real parameter
Unique Pointer: Manages the storage of a pointer, providing a limited garbage-collection facility, with little to no overhead over built-i n Pointers (depending on the deleter used).These objects has the ability of taking ownership of a pointer:once they take ownership they manage the pointed object B Y becoming responsible for it deletion at some point.Unique_ptr objects automatically delete the object the
From: http://s319.dlut.edu.cn/educ/83.htm§ 8. 4 pointer to a string and pointer to a string
8.4.1 String Representation
In CProgram.
1. Use a character array.
[Example: 8.11]
Void main (void)
{Static char string [] = "I love China! ";
Printf ("% s \ n", string );
}
Runtime output: I love China!
Like the preceding array attribute, string is the array name, which represents the fi
A. Array of pointers: essentially an array in which the elements that are stored are pointers. For example: Char *nums[10]; defines a storage element named num length 10 as an array of pointer variables that point to char type data. Each element in the array is a pointer, and each pointer can point to a string.Examples in the program are:int main (int argc, const
Chapter 6 pointer
This chapter clearly highlights the sensitivity of beginners. I will also be unfamiliar with this part after a period of time without using C. Well, it is actually unfamiliar with the high-level pointer.
Of course, there are always a lot of references in this part, such as the problem of array range, or I will not abuse myself to read such books in the summer.
Summary:
The value of the
For pointers and constants, the following three forms are correct:
Copy codeThe Code is as follows: const char * myPtr = char_A; // pointer to a constant
Char * const myPtr = char_A; // constant pointer
Const char * const myPtr = char_A; // constant pointer to a constant
The three types are described in sequence below.Because * The operator is the left operato
first, what is a null pointer and a wild pointer1. Null pointer 1 > A pointer that does not store any memory address is called a null pointer (null pointer ) 2> null pointer is a po
A. Array of pointers: essentially an array in which the elements that are stored are pointers. For example: Char *nums[10]; defines a storage element named num length 10 as an array of pointer variables that point to char type data. Each element in the array is a pointer, and each pointer can point to a string.Examples in the program are:int main (int argc, const
Constant (volume) pointersA constant pointer is a pointer to a constant that we refer to as the name implies.
Pointing to constant variables with constant pointersIn fact, the C + + rule can only use the pointer to the constant variable, the normal pointer to it will be the error, the reason is easy to understand, we
Spit the Slot:The translation of pointer constants and constant pointers is like the regularization translation in machine learning, True, regularization is really more high-end than the rule, but when it comes to understanding, it still has to be understood in terms of rules.
The concept of pointer constants and constant pointers is the same, there is no word pointer
When we initialize a pointer or assign a value to a pointer, the left side of the assignment number is a pointer, and the right side of the assignment number is a pointer expression. In the example above, in most cases, the type of the pointer is the same as the type of the
A reference is a pointer without a pointer syntax. Like a pointer, a reference provides indirect access to an object.
-- C ++ primer p29
Although a reference can also be used as a pointer, it is wrong to initialize a reference with an object address like a pointer.
For examp
"Turn from" http://www.cnblogs.com/mjios/archive/2013/04/22/3034788.htmlDirectory of this document
First, what is a null pointer and a wild pointer
Two examples of wild pointers and null pointers
Description: This objective-c topic is a prelude to learning iOS development, and to enable programmers with experience in object-oriented language development to quickly get started with objectiv
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.