我有两个指针,
char *str1;
int *str2;
如果我查看两个指针的大小,让我们假设
If I look at the size of both the pointers let’s assume
str1=4 bytes
str2=4 bytes
str1++ 将增加 1 个字节,但如果 str2++ 它将增加 4 个字节.
str1++ will increment by 1 byte, but if str2++ it will increment 4 bytes.
这背后的概念是什么?
简单,在提供的场景中:
Simple, in the provided scenario:
++ 运算符将指针增加所指向类型的大小.
The ++ operator increments the pointer by the size of the pointed type.
这篇关于字符指针和整数指针 (++)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
std::reference_wrapper 和简单指针的区别?Difference between std::reference_wrapper and simple pointer?(std::reference_wrapper 和简单指针的区别?)
常量之间的区别.指针和引用?Difference between const. pointer and reference?(常量之间的区别.指针和引用?)
c++ - 如何从指向向量的指针访问向量的内容?How to access the contents of a vector from a pointer to the vector in C++?(c++ - 如何从指向向量的指针访问向量的内容?)
*& 的含义和**&在 C++ 中Meaning of *amp; and **amp; in C++(*amp; 的含义和**amp;在 C++ 中)
为什么我不能对普通变量进行多态?Why can#39;t I do polymorphism with normal variables?(为什么我不能对普通变量进行多态?)
取消引用已删除的指针总是会导致访问冲突?Dereferencing deleted pointers always result in an Access Violation?(取消引用已删除的指针总是会导致访问冲突?)