首页 > 其他 > 详细

const指针,指向const的指针,指向const的const指针 -- C

时间:2014-07-29 17:55:02      阅读:311      评论:0      收藏:0      [点我收藏+]



int
main()
{
	//记忆方法:中间加个"是"字变得很好理解

	/*	指针函数 */
	void * f();
	//按顺序写,先写指针(void *),再写函数(f())
	//指针是函数 -- 这个指针是一个函数。
	
	/*	函数指针 */
	void (* f)();
	//函数是指针 -- 这个函数是一个指针。


	//暂时没想到怎么记忆。
	
	/* const 指针 */
	const int * a;

	/* 指向 const 的指针 -- 指针 const*/
	int * const b;

	/* 指向 const 的 const 指针 */
	const int * const c;
	
}


const指针,指向const的指针,指向const的const指针 -- C,布布扣,bubuko.com

const指针,指向const的指针,指向const的const指针 -- C

原文:http://blog.csdn.net/cy_cai/article/details/38272391

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!