微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

C++中definition与declaration的区别

翻了好几篇关于deFinition与declaration和博客,都写的很坑人 ,看来我得写1篇了,避免很多新手1入门就被坑了。

deFinition是通过declaration完全的定义了实体,每一个declaration都是deFinition,除下面几种情况。

1,存储类标识符extern开头的或语言连接标识符开头,但未初始化的。

extern const int a; // declares,but doesnt define a extern const int b = 1;// defines b
extern "C" void f1(void(*pf)()); // declares a function f1 with C linkage,



2.没有函数体的函数

int f(int); // declares,but doesnt define f



3.函数中未定义的参数

int f(int x); // declares,but doesnt define f and x int f(int x) { // defines f and x return x+a; }


4.类中声明的静态变量

struct S { // defines S int n; // defines S::n static int i; // declares,but doesnt define S::i }; int S::i; // defines S::i


5.只申明了类的名字,主要用在forward declaration和elaborated type中

struct S; // declares,but doesnt define S class Y f(class T p); // declares,but doesnt define Y and T (and also f and p)


6.模板参数

template<typename T> // declares,but doesnt define T


7.预先申明的模板

template<> struct A<int>; // declares,but doesnt define A


8.typedef声明

typedef S S2; // declares,but doesnt define S2 (S may be incomplete)


9.alias申明

using S2 = S; // declares,sans-serif;font-size:13px;line-height:15.360000610351563px;">10.模糊enum的申明

enum Color : int; // declares,but doesnt define Col


11.Using-declaration

using N::d; // declares,but doesnt define d




版权声明:本文为博主原创文章,未经博主允许不得转载。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐