Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 814 Bytes

068 - 声明和定义有什么区别.md

File metadata and controls

33 lines (24 loc) · 814 Bytes

https://stackoverflow.com/questions/1410563/what-is-the-difference-between-a-definition-and-a-declaration

问题

C/C++ 中,声明和定义有什么区别?

回答

1. 声明不分配存储空间,定义会分配。

定义会实实在在地创造这个东西,而声明只是告诉编译器有这么个东西,它的创造在别处。

extern int bar; // 声明
extern int g(int, int); // 声明
double f(int, double); // 声明
class foo; // 声明

int bar; // 定义
int g(int lhs, int rhs) {return lhs*rhs;} // 定义
double f(int i, double d) {return i+d;} // 定义
class foo {}; // 定义

2. 声明可以多次,但定义只能一次。

 // 没问题
double f(int, double);
double f(int, double);
extern double f(int, double);
extern double f(int, double);