7. const分配内存情况

  • const分配内存情况
    • 对const变量 取地址 ,会分配临时内存
    • 使用普通变量 初始化 const变量
    • 对于自定义数据类型
#define _CRT_SECURE_NO_WARNINGS
#include
using namespace std;
#include 

//1、对const变量 取地址 ,会分配临时内存  
void 

你可能感兴趣的:(c++,c++,算法,开发语言)