const对象的动态分配
我在书中看到,c++允许动态创建 const 对象,例如;const int *p = new const int(1024)//前提是必须初始化我在vc++6.0上测试,无法通过编译,以下是错误:
--------------------Configuration: vava - Win32 Debug--------------------
Compiling...
vwx.cpp
D:\c++程序\vava\vwx.cpp(6) : error C2468: 'new' : cannot allocate 'const'/'volatile' objects (type is 'const int')
D:\c++程序\vava\vwx.cpp(6) : error C2166: l-value specifies const object
Error executing cl.exe.
vava.exe - 2 error(s), 0 warning(s)
求教指点,谢谢。