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




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

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...