主要思想就是指针在自增时再自增多一次就好了,但是要注意判断指针是否是指向了尾部比如我写段代码: char *read; while( *read ){ cout<< *read; read++; if( *read ) read++;}