原
C++基础备忘
很多年没有关注C++本身了,最近几年一直做设计、搞流媒体。如今拾起来强化一下。 1、const用法---摘自《Effective C++》 char greeting[] = "Hello"; char* p = greeting; const char* p = g...