码迷,mamicode.com
首页 > 其他好文 > 详细

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

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

标签:指针   函数   class   方法   main   on   const   c   



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

标签:指针   函数   class   方法   main   on   const   c   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!