int StringOperation::length(char *sptr) { char *move=sptr; while(*move) { move++; } return (move-sptr); } 以上的程式碼,我利用移動指標計算字串的長度,而指標 ...
確定! 回上一頁