周星驰 · 2005-11-02 03:11:31 · 阅读: 445 不错,还有木有? size_t StrLen( const char *pStr ) { if ( !pStr[0] ) return 0; else return ( StrLen( pStr + 1 ) + 1 ); }