码迷,mamicode.com
首页 > 编程语言 > 详细

c++ const问题小记

时间:2019-09-24 17:09:27      阅读:53      评论:0      收藏:0      [点我收藏+]

标签:bsp   div   amp   style   const   问题   back   c++   nbsp   

  • 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问题小记

标签:bsp   div   amp   style   const   问题   back   c++   nbsp   

原文地址:https://www.cnblogs.com/sxq-study/p/11579163.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!