Learning boost SP 1 -- 什么是complete type

类别:编程语言 点击:0 评论:0 推荐:

在学习boost的过程中,我们发现在boost的文档中,多处提及了complete type和incomplete type。到底什么是complete type呢?经过我查找msdn,终于发现了,原来complete type是编译器能够确定类型大小的类型,incomplete type是编译器不能确定类型大小的类型。incomplete type有:

没有确定成员的struct 没有确定成员的union 没有确定大小的数组

看看msdn吧:

C Language Reference   Incomplete Types

An incomplete type is a type that describes an identifier but lacks information needed to determine the size of the identifier. An "incomplete type" can be: A structure type whose members you have not yet specified. A union type whose members you have not yet specified. An array type whose dimension you have not yet specified.

The void type is an incomplete type that cannot be completed. To complete an incomplete type, specify the missing information. The following examples show how to create and complete the incomplete types. To create an incomplete structure type, declare a structure type without specifying its members. In this example, the ps pointer points to an incomplete structure type called student.

struct student *ps; To complete an incomplete structure type, declare the same structure type later in the same scope with its members specified, as in

struct student { int num; } /* student structure now completed */ To create an incomplete array type, declare an array type without specifying its repetition count. For example:

char a[]; /* a has incomplete type */ To complete an incomplete array type, declare the same name later in the same scope with its repetition count specified, as in

char a[25]; /* a now has complete type */

Send feedback on this topic to Microsoft

本文地址:http://com.8s8s.com/it/it23309.htm