`
java-mans
  • 浏览: 11711167 次
文章分类
社区版块
存档分类
最新评论

Way on c & c++ 小记 [五] – 初始化列表与成员函参作用域

 
阅读更多



初始化列表与成员函参作用域

作者:Jason Lee @http://blog.csdn.net/jasonblog

日期:2010-04-11

[1]初始化列表

所谓初始化列表,从语法角度讲,就是构造函数圆括号后的冒号与左花括号之间的紧跟初始值的变量序列,如下是一个示例:


作为初始化列表,它以它的作用和初始化顺序而出名。

初始化列表有什么作用呢?我觉得可以一言以蔽之:初始化列表最重要的作用就是用来初始化不能被赋值的成员。比如引用必须在第一次出现的时候进行初始化,之后就不能再被赋值了。另外两种需要使用初始化列表的是被 const 修饰的类成员以及对象,而后者使用初始化列表进行初始化的主要原因方便和性能上的提高。

虽然初始化列表是一个有序的待初始化的变量序列,但真正对变量进行初始化的顺序却并不是如同初始化列表中所标明的一样,比如在如下代码中,是先使用 b (未知数值)初始化 a ,然后再用数值 2 初始化 b

这是由于在类成员的声明次序中 a 先于 b 声明。

进一步反问: a 先于 b 声明会导致什么呢?

在词法分析的过程中,当分析出一个新的变量时,需要向符号表进行该变量的信息注册。在上述代码中, a 先于 b 声明,所以 a 先于 b 被注册到符号表中。以 Demo 类为例,该类仅有两个数据成员,并且在该类的符号表中成员 a 是在成员 b 之前。那么当我们要实例化一个对象(比如 demo )的时候,需要分配一定的内存空间,这时应该思考一下,如果是自己设计会如何进行内存的分配呢?我想,一种合理的方案是根据符号表中各项记录的信息由上及下进行空间的申请与分配,于是 a 先于 b 获得了内存空间,那么自然 a 要先被初始化。

以上只是一种个人猜想的解释。另外一种权威的解释是说为了保证析构函数进行对象消亡处理的效率,必须保证有序性,因为无序性会带来昂贵的开销。所以构造函数与析构函数对成员的调用是相反的。

但是如何保证有序呢?我个人觉得对符号表(或者类似机制)的依赖是不可少的,或许,有点殊途同归?

[2] 成员函参作用域

在类定义体外定义函数,必须指明相关作用域,比如

看下面一段代码:

值得注意的是 func 函数后面的形参 arg index 类型,该类型在 Demo 类中定义,这里无需特指该类型的定义域。而对于 func2 函数的返回值,该返回值是一个 index 类型,如果没有指定作用域的话则会出错。

这是为什么呢?

以下是个人的理解:

函数具有函数作用域,类也具有类作用域,这种局部作用域是如何体现出来的呢?我想一种可能的方案是采用局部的符号表,而全局作用域则对应着全局符号表。我们都知道,当进入某个函数,相应地就进入到该函数的局部作用域,一个比较常见的例子就是当前的局部变量会覆盖掉同名的全局变量。

假设当前采用的是符号表的机制,从全局进入某个局部作用域后,当前符号表从全局切换到某个局部符号表。所以当我们在类定义体外定义的成员函数时,首先指明了类作用域,再进入类的成员函数,这时候符号表就切换成与 Demo 类的符号表,从而即可访问 index 类型,因为该类型在声明的时候已经注册到当前的符号表中。

而对于返回类型为 index 的函数 func2 来讲,由于返回类型是出现在类成员函数之前,所以如果在类定义体外定义,当前处于符号表,并无该类型的注册信息,无法查找到,于是就需要指明相关类作用域。

再稍微涉及一点,如果把原语句改动一下:


则该函数是在全局中定义的一个函数,而非类的成员函数。这是因为指明 index 所属域的时候并没有进行符号表的切换,所以接下来是将 func2 函数注册到当前符号表,也就是全局符号表中。这又是为什么呢?换位思考一下,只是访问某个符号表中某个变量的注册信息值得切换当前符号表吗?

分享到:
评论

相关推荐

    WAYON维安一级代理分销KOYUELEC光与电子WAYON OVP IC INTRODUCTION过压保护方案与应用

    WAYON维安一级代理分销KOYUELEC光与电子WAYON OVP IC INTRODUCTION过压保护方案与应用 WAYON维安一级代理分销KOYUELEC光与电子WAYON OVP IC INTRODUCTION过压保护方案与应用主要介绍了WAYON公司的过压保护方案和...

    Build Your Own Web Site The Right Way Using HTML & CSS(part1)

    books, this title concentrates on modern, best-practice techniques from the very beginning, which means you’ll get it right the first time. The web sites you’ll build will: Look good on a PC, Mac ...

    Accelerated C++: Practical Programming by Example

    If you don’t have a lot of time, but still want to learn the latest in C++, you don’t have to learn C first. You might learn more by digging into current language features and classes from the very ...

    Moving from C to C++

    Like any human language, C++ provides a way to express concepts. If successful, this medium of expression is significantly easier and more flexible than the alternatives as problems grow larger and ...

    learn c the hard way

    《Learn C the hard way》是一本关于C语言编程的学习书籍,由Zed A. Shaw编写。这本书采用了一种非传统的教学方式,即通过让学习者实际编写和运行代码的方式来教授C语言,这种方式被作者称为“硬学习法”。书中不仅...

    3路密码算法的C语言和C++源码实现.zip

    C++是C语言的扩展,增加了面向对象编程特性,同时也保留了C语言的低级特性和效率。在本例中,"3way.cpp"文件很可能包含了C++实现的3路密码算法,而"3way.h"可能是头文件,包含了函数原型、常量定义和数据结构等,供...

    Managed extensions for VCL for Delphi & C++Builder 6-2010 Cracked

    Managed VCL is the best components suite to work with .Net framework from Delphi and C++ Builder - feature named .Net interop. It is designed to provide a way to interact with applications written in ...

    Expert C++ / CLI .NET for Visual C++ Programmers (带完整目录)

    In a very similar way, C++/CLI is layered on top of C++. C++/CLI provides a high degree of source code compatibility with C++. As a consequence, the following code is valid if you build the program ...

    C++例程(栅格)_C++_栅格路径规划_

    1. 初始化栅格:根据环境信息设置每个格子的状态和代价。 2. 实现启发式函数h(n):这通常基于曼哈顿距离或欧几里得距离,但也可以根据实际场景定制。 3. 设置优先队列:将起点放入队列,并初始化其g值和f值。 4. ...

    Build Your Own Web Site The Right Way Using HTML & CSS(part2)

    books, this title concentrates on modern, best-practice techniques from the very beginning, which means you’ll get it right the first time. The web sites you’ll build will: Look good on a PC, Mac ...

    Practical C++ Programming C++编程实践

    Templates: The Hard Way Templates: The C++ Way Function Specialization Class Templates Class Specialization Implementation Details Advanced Features Summary Programming Exercises 25. Standard ...

    Exploring C++ 11

    Exploring C++ divides C++ up into bite-sized chunks that will help you learn the language one step at a time. Assuming no familiarity with C++, or any other C-based language, you’ll be taught ...

    江苏省铜山区清华中学七年级英语下册 Unit 4 Finding your way Comic Strip&Welcome to

    江苏省铜山区清华中学七年级英语下册 Unit 4 Finding your way Comic Strip&Welcome to the Unit学案(无答案)(新版)牛津版

    The C++ Standard Library 2nd 原版pdf by Josuttis

    I learned C++11 the hard way. Because I didn’t follow the standardization as it was happening I started to look at C++11 about two years ago. I really had trouble understanding it. But the people on ...

    Ivor Horton’s Beginning Visual C++ 2010 英文版 PDF 超清晰版

    With this book by your side, you are well on your way to writing applications in both versions of C++ and becoming a successful C++ programmer. Ivor Horton's Beginning Visual C++ 2010: Teaches the ...

    A Smarter Way to Learn HTML & CSS.pdf

    Series: A Smarter Way to Learn Paperback: 258 pages Publisher: CreateSpace Independent Publishing Platform; 1 edition (March 13, 2015) Language: English ISBN-10: 150867387X ISBN-13: 978-1508673873 ...

    Essential C++ 中文版

    Essential C++ offers a fast-track to learning and working with C++. This book is specifically designed to bring you up to speed in a short amount of time. It focuses on the elements of C++ programming...

Global site tag (gtag.js) - Google Analytics