- 相关推荐
对C++中指针的深入研究
毕业论文
对C++中指针的深入研究
王根义
(陕西职业技术学院计算机系,陕西西安 710100)
摘 要:本文对C++各种类型的指针进行了深刻全面地讨论,把各种指针的常量,变量的声明、赋值和访问都11列出,这对利用指针开发大型软件的程序员来说无疑是1个非常有力的工具。本文还揭示了指针变量与数组名的内在关系,以及类的静态数据指针与非静态数据指针的根本区别。
关键词:指针类型、指针常量、指针变量、数组名
【文献标识码】A 【文章编号】1728-2462(2008)06-0070-02
Abstract:All kinds of pointers in C++ are thoroughly and deeply discussed.The constant quantity,variables,the form of endowing with value and access to data are listed like a table.This is undoubtedly a useful tool to a programmer who develops big softwares.The author bring to light the relationship between the pointer variables and the name of number groups.He also reveals the essential distinction between a static pointer and non-static pointer.
Keywords:pointer type data,pointer constant quantity,pointer variable,a number group’s name
C++中的“指针”实质上是指针类型的数据,所以指针既有常量,也有变量。但是人们往往只是简单的说“指针”,没有带“常量”或“变量”2字。那么,该“指针”到底是指常量呢还是指变量呢?这个问题要根据它所属的那个整句才能回答。C++中的指针按照它所指向的对象可以划分为变量指针、数组指针、函数指针、对象指针、类的成员数据指针和类的成员函数指针。
1、变量指针
设type代表任意1种基本类型说明符,X是该类型的变量,则:
1、
[1] ...
【对C++中指针的深入研究】相关文章:
浅谈C语言中指针的教学08-18
组织变革管理指针-平衡计分卡07-25
学习C语言指针应注意的几个问题10-24
C++类的动态组件化技术10-12
数据加密标准DES的C++实现05-12
知识经营:一个值得澄清与深入研究的新概念07-22
基于Visual C++ 的世界地图投影程序的设计09-29