1 char *ch1="hello11";
2 const char *ch2="hello22";
3 ch2 = ch1;//不报错,但有警告
4 ch1 = (char *)ch2; 

相关文章: