c++ const问题小记

2020-12-13 15:20

阅读:397

标签: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


评论


亲,登录后才可以留言!