欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

const在编译期的替换问题

程序员文章站 2024-03-23 21:40:52
...
//const关键字
const int a = 10;


int b = a;    //使用值,发生替换
const int *p = &a;    //使用地址,不发生替换


//解引用,用到就替换
int c = 10;
int &d = c;    //替换

 

相关标签: const关键字