声明与定义(Declaration and Definition)

开始这篇文章之前,我们先弄懂变量的declaration和definition的区别,即变量的声明和定义的区别。

一般情况下,我们这样简单的分辨声明与定义的区别:建立存储空间的声明称之为“定义”,而把不需要建立存储空间的称之为“声明”。

其实更为准确地描述的话,变量的声明可以分为两种情况:

(1)一种是需要建立存储空间的。例如:int a;在声明的时候就已经建立了存储空间。这种声明是定义性声明(defining declaration)。即我们平时所说的“定义”;

(2)另一种是不需要建立存储空间的,只是告诉编译器某变量已经在别处定义过了。例如:extern int a;其中,变量a是在别处定义的。这种声明是引用性声明(referning declaration)。即我们平时所说的“声明”。

所以,从广义的角度来说,声明中包含着定义,但是并非所有的声明都是定义。即,定义性声明既是定义又是声明,而引用性声明只是声明。例如,int a;它既是定义又是声明,而extern int a;就只是声明而不是定义。再来看具体的例子:

  1.  int a;        // 定义性声明,分配存储空间,初值不确定
    int b = ; // 定义性声明,分配存储空间,赋初值
    extern int c; // 引用性声明,不分配存储空间,只是告诉编译器变量c在别处分配过了

C语言类型(C Types)

C语言将类型分为三类(C99 6.2.5):

Types are partitioned intoobject types(types that fully describe objects),function types(types that  describe  functions),  andincomplete  types(types  that  describe  objects  but  lack information needed to determine their sizes).

(1)对象类型(object types):对象的大小(size)、内存布局(layout)和对齐方式(alignment requirement)都很清楚的对象。

(2)不完整类型(incomplete types):与对象类型相反,包括那些类型信息不完整的对象类型(incompletely-defined object type)以及空类型(void)。

(3)函数类型(function types):这个很好理解,描述函数的类型 -- 描述函数的返回值和参数情况。

这里我们详细了解下不完整类型。先看哪些情况下一个类型是不完整类型:

再看标准的说明:

The void type comprises an empty set of values; it is an incomplete type that cannot be completed. (C99 6.2.5/19)

An array type of unknown size is an incomplete type. It is completed, for an identifier of that type, by specifying the size in a later declaration (with internal or external linkage). A structure or union type of unknown content (as described in 6.7.2.3) is an incomplete type. It is completed, for all declarations of that type, by declaring the same structure or union tag with its defining content later in the same scope.(C99 6.2.5/22)

总结如下

(1)具体的成员还没定义的结构体(共用体)

(2)没有指定维度的数组(不能是局部数组)

(3)void类型(it is an incomplete type that cannot be completed)

sizeof操作符不可以用于不完整类型,也不可以定义不完整类型的数组

为什么要有不完整类型

或者说不完整类型有哪些作用,C里为什么要有不完整类型?

可以这么说,C的不完整类型是提供给C实现封装抽象的唯一工具(这样说,不知道是不是有些武断,欢迎批评指正哈)。

举个例子,我们可以在list.c中定义

 struct __list {
struct __list *prev;
struct __list *next;
viud *data;
};

在list.h中这样:

 typedef struct __list *list_t;  

这样的话,链表结构的具体定义对用户来说就是透明的了,不能直接的访问结构成员,只能提供相应的接口来供访问,这样做的好处显而易见,可以防止用户随意破坏模块内部的抽象数据类型。

示例:

libevent中:

 //event2/event.h

 struct event_base
#ifdef EVENT_IN_DOXYGEN_
{/*Empty body so that doxygen will generate documentation here.*/}
#endif
;
 //event-internel.h

 struct event_base {
/** Function pointers and other data to describe this event_base's
* backend. */
const struct eventop *evsel;
/** Pointer to backend-specific data. */
void *evbase;
...
}

外部使用libevent库时,只需要inclued <event2/enent.h>,这样可以得到不透明的event_base实例并进行使用,并且完全不会对event_base的内部变量有任何改动。要对event_base进行操作的话只能使用libevent的函数,而内部函数使用event_base时则会include <event-internel.h>,从而能够获取到event_base的实际结构。

不完整类型的缺点

(1)使用不完整类型的话,我们也就只能使用指向该不完整类型的指针了,因为指针类型是平台相关的,即在特定的平台上指针变量的大小是已知的。

(2)在不完整类型还没有完整之前,sizeof操作符是获取不了该类型的大小的。

(3)头文件中我们也是不可以使用inline函数的,因为类型是不完整的,在inline函数中如果访问成员的话,编译器会报错。

前置声明(forward declaration)

维基百科上的定义是:

In computer programming, a forward declaration is a declaration of an identifier (denoting an entity such as a type, a variable, or a function) for which the programmer has not yet given a complete definition. It is required for a compiler to know the type of an identifier (size for memory allocation, type for type checking, such as signature of functions), but not a particular value it holds (in case of variables) or definition (in the case of functions), and is useful for one-pass compilers. Forward declaration is used in languages that require declaration before use; it is necessary for mutual recursion in such languages, as it is impossible to define these functions without a forward reference in one definition. It is also useful to allow flexible code organization, for example if one wishes to place the main body at the top, and called functions below it.

我们可以从上面定义中提取出如下信息:
(1)前置声明是针对类型,变量或者函数而言的
(2)前置声明是个不完整的类型
(3)前置声明会加快程序的编译时间

其实上面的typedef struct __list *list_t;就是建立在前置声明基础上的。

前置声明有哪些作用

(1)前置声明可以有效的避免头文件循环包含的问题,看下面的例子

  1.  // circle.h
    #include "point.h" struct circle {
    struct coordinate center;
    };
  1.  // point.h
    #include "circle.h" struct coordinate {
    struct circle cir;
    };
  1.  #include "circle.h"  
    
     int main(int argc, const char *argv[])
    {
    struct circle cir;
    return ;
    }

如果编译这个程序,你会发现因为头文件循环包含而发生编译错误,即使修改头文件如下也还是不行:

  1.  #ifndef __CIRCLE_H__
    #define __CIRCLE_H__
    // circle.h
    #include "point.h" struct circle {
    struct coordinate center;
    };
    #endif
  1.  #ifndef __POINT_H__
    #define __POINT_H__
    // point.h
    #include "circle.h" struct coordinate {
    struct circle cir;
    };
    #endif

这个时候就可以使用前置声明轻松的解决这个问题,但是必须要使用指向不完整类型的指针了。

  1.  #ifndef __CIRCLE_H__
    #define __CIRCLE_H__
    // circle.h
    //#include "point.h" struct coordinate;
    struct circle {
    struct coordinate *center;
    };
    #endif
  1.  #ifndef __POINT_H__
    #define __POINT_H__
    // point.h
    //#include "circle.h" struct circle;
    struct coordinate {
    struct circle *cir;
    };
    #endif

可以发现我们连头文件都不用包含的,这就可以缩短编译的时间了。

因为前置声明是个不完整类型,所有不完整类型的优缺点和注意事项完全适用于前置声明。

参考链接:

http://blog.csdn.net/xiaoyusmile/article/details/5420252

http://blog.csdn.net/tonywearme/article/details/8136530

http://blog.csdn.net/candcplusplus/article/details/38498707

http://blog.sina.com.cn/s/blog_6f70a9530101en3a.html

http://www.embedded.com/electronics-blogs/programming-pointers/4024893/Incomplete-types-as-abstractions

http://everything.explained.today/Opaque_data_type/

http://verplant.org/oo_programming_in_c.shtml

http://www.tamabc.com/article/459136.html

http://blog.aaronballman.com/2011/07/opaque-data-pointers/

http://jatinganhotra.com/blog/2012/11/25/forward-class-declaration-in-c-plus-plus/

http://accu.org/index.php/journals/1593

http://spin.atomicobject.com/2014/05/19/c-undefined-behaviors/

https://akrzemi1.wordpress.com/2013/12/11/type-erasure-part-iii/

http://ericniebler.com/2014/11/13/tiny-metaprogramming-library/

http://hubicka.blogspot.com/2014/09/devirtualization-in-c-part-6-enforcing.html

http://jguegant.github.io/blogs/tech/sfinae-introduction.html

C语言不透明结构体句柄--数据隐藏

C语言开发函数库时对外接口隐藏库内结构体实现细节的方法

Opaque Type Oriented Programming in C

不透明类型http://os.is-programmer.com/posts/40846.html?utm_source=tuicool&utm_medium=referral

Log4c中的接口实现分离 – 以Appender为例

Opaque Pointers——不透明指针

不透明结构体使用

C语言抽象数据类型及不透明指针

关于不透明指针

C及虚拟内存总结

转自:http://blog.csdn.net/astrotycoon/article/details/41286413

C语言的不完整类型和前置声明(转)的更多相关文章

  1. C++_前置声明

    为什么要有前置声明? eg: -定义一个类 class A,这个类里面使用了类B的对象b,然后定义了一个类B,里面也包含了一个类A的对象a,就成了这样: //a.h #include "b. ...

  2. C++前置声明

    [1]一般的前置函数声明 见过最多的前置函数声明,基本格式代码如下: #include <iostream> using namespace std; void fun(char ch, ...

  3. Go语言规格说明书 之 类型(Types)

    go version go1.11 windows/amd64 本文为阅读Go语言中文官网的规则说明书(https://golang.google.cn/ref/spec)而做的笔记,完整的介绍Go语 ...

  4. C++类型前置声明

    前言 本文总结了c++中前置声明的写法及注意事项,列举了哪些情况可以用前置声明来降低编译依赖. 前置声明的概念 前置声明:(forward declaration), 跟普通的声明一样,就是个声明, ...

  5. GO语言总结(2)——基本类型

    上篇博文总结了Go语言的基础知识——GO语言总结(1)——基本知识  ,本篇博文介绍Go语言的基本类型. 一.整型 go语言有13种整形,其中有2种只是名字不同,实质是一样的,所以,实质上go语言有1 ...

  6. C语言基础(6)-char类型

    1. char常量.变量 使用单引号‘’引起来的就是char的常量 ‘a’是一个char类型的常量 “a”是一个字符串类型的常量 1是一个int型的常量 ‘1’是一个char型的常量 char a; ...

  7. C语言小结之结构类型

    C语言小结之结构类型 @刁钻的游戏 (1)枚举型类型enum COLOR {BLACK,RED,BLUE};//声明一种新的数据类型,其值分别为0,1,2但是用BLACK/RED/BLUE代表也可以这 ...

  8. 【C语言学习】存储类型

    C语言中的存储类型主要有四种:auto.static.extern.register ★auto存储类型 默认的存储类型.在C语言中,假设忽略了变量的存储类型,那么编译器就会自己主动默认为auto型 ...

  9. C语言学习之枚举类型

    前言 枚举(enum)类型是计算机编程语言中的一种数据类型.枚举类型:在实际问题中,有些变量的取值被限定在一个有限的范围内.例如,一个星期内只有七天,一年只有十二个月,一个班每周有六门课程等等.如果把 ...

随机推荐

  1. 【20181024T2】小C的序列【GCD性质+链表】

    题面 [错解] 一眼不可做啊 哎分治? 算不了啊 真的是,打暴力走人 20pts (事实上,还有20pts是随机数据,加个小小的特判就可以) [正解] 首先,从l开始往后gcd最多只有O(log)种取 ...

  2. BZOJ1002輪狀病毒 暴搜 + 找規律 + 高精度

    @[暴搜, 找規律, 高精度] Description 轮状病毒有很多变种,所有轮状病毒的变种都是从一个轮状基产生的.一个\(n\)轮状基由圆环上\(n\)个不同的基原子和圆心处一个核原子构成的,2个 ...

  3. [转]Intent和PendingIntent的区别

    intent英文意思是意图,pending表示即将发生或来临的事情. PendingIntent这个类用于处理即将发生的事情.比如在通知Notification中用于跳转页面,但不是马上跳转. Int ...

  4. HTML5 本地存储(Web Storage)

    HTML5 提供了两种在客户端存储数据的新方法: localStorage - 本地永久存储,下次打开浏览器数据依然存在 sessionStorage - 只存在于一个会话的数据存储,关闭浏览器数据会 ...

  5. HTML下在IE浏览器中的专有条件注释

    在进行WEB标准网页的学习和应用过程中,网页对浏览器的兼容性是经常接触到的一个问题.其中因微软公司的Internet Explorer(简称IE)占据浏览器市场的大半江山,此外还有Firefox.Op ...

  6. 'NSUnknownKeyException', reason:....etValue:forUndefinedKey:]: this class is not key value coding-compliant for the key

    erminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<MainTableViewControl ...

  7. POJ 1222 POJ 1830 POJ 1681 POJ 1753 POJ 3185 高斯消元求解一类开关问题

    http://poj.org/problem?id=1222 http://poj.org/problem?id=1830 http://poj.org/problem?id=1681 http:// ...

  8. Spring ListFactoryBean实例

    ListFactoryBean”类为开发者提供了一种在Spring的bean配置文件中创建一个具体的列表集合类(ArrayList和LinkedList). 这里有一个 ListFactoryBean ...

  9. delphi tcp/ip IdTCPServer1实例一

    unit Unit1; interface uses  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Form ...

  10. WPF: 使用CommandManager.InvalidateRequerySuggested手动更新Command状态

    WPF判断命令(Command)是否能够执行是通过ICommand.CanExecute事件,在实际程序中路由命令一般是通过CommandBinding来使命令得到实际操作代码,但是这个CanExec ...