最近发现使用const int 定义变量时若不设初始值,编译器会报错。然而使用const char* 时却不会,并且使用const char* 明明是const常量,却仍然可以修改其值。
int main()
{
const
2020-07-29