c++ const问题小记

2019-09-30 06:38:40来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

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下通过。


原文链接:https://www.cnblogs.com/sxq-study/p/11579163.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:C++—多态与继承

下一篇:数据结构、算法及应用