c++ const问题小记
Posted sxq-study
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c++ const问题小记相关的知识,希望对你有一定的参考价值。
- int* a = new int;
- const int* b = a;
- const int* a = new int;
- int* b = (int*)a;
- const int m = 10;
- int n = m;
- const int& p = m;
- int& q = (int&)p;
以上在vs2019下通过。
以上是关于c++ const问题小记的主要内容,如果未能解决你的问题,请参考以下文章