これが機能しないのはなぜですか?
short pStringCt = 0;
const char* constInBuf = ibuf;
int j;
for (j = 0; j < i; j++)
{
/*Detect when there's a space in the buffer and grab word*/
if (ibuf[j] == ' ' ||
ibuf[j] == '|' ||
j == i - 1)
{
int k;
for (k = j - 1; k >= 0; k--){
if (k == 0 || ibuf[k] == ' ' || ibuf[k] == '|')
{
if (pStringCt > 0){
pString[pStringCt] = strndup(constInBuf + k + 1, j - k + 1);
printf("-pString at %d is: %s\n", pStringCt, pString[pStringCt]);
pStringCt += 1;
}
if (pStringCt == 0){
pString[pStringCt] = strndup(constInBuf+k, j-k + 1);
printf("-----pString at %d is: %s\n", pStringCt, pString[pStringCt]);
pStringCt+=1;
}
printf("%d is pStringCt\n", pStringCt);
break;
}
}
}
break ステートメントの後、pStringCt の値が増加していません。つまり、pStringCt は、メソッドの開始時点では 0 です。次に、それに関連する 2 つの if ステートメントの後に 1 つに増加します。しかし、breakステートメントの後、ゼロにリセットされます...