博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c++官方文档-指针
阅读量:6687 次
发布时间:2019-06-25

本文共 767 字,大约阅读时间需要 2 分钟。

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;int main(){ /** * * *p++ // same as *(p++): increment pointer, and dereference unincremented address * *++p // same as *(++p): increment pointer, and dereference incremented address * ++*p // same as ++(*p): dereference pointer, and increment the value it points to * (*p)++ // dereference pointer, and post-increment the value it points to */ int jj = -1; int j = 1; cout<<&j<

++的操作高于*

posted on
2017-12-31 01:01 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/shuiyonglewodezzzzz/p/8151923.html

你可能感兴趣的文章
授之以渔-运维平台应用模块二(Vmware控制台篇)
查看>>
三对角矩阵
查看>>
判断是否是微信中打开网页
查看>>
单例模式的有缺点
查看>>
perl基础1
查看>>
chrome浏览器如何通过js判断是否安装了某扩展?
查看>>
奔驰的罪恶
查看>>
redhat 6.5 mysql主从同步
查看>>
js 变量、作用域和内存问题
查看>>
Android actionBar 修改背景色
查看>>
项目质量管理,人力资源管理作业
查看>>
Android中HttpClient网络请求
查看>>
我的友情链接
查看>>
Backbone
查看>>
asterisk架构
查看>>
python sys模块
查看>>
PHP基础(三)函数
查看>>
我的友情链接
查看>>
linux shell脚本的使用
查看>>
c语言使用DES_ncbc_encrypt以及段错误 (核心已转储) 解决
查看>>