printf(),fprintf(),wprintf()和NSlog()不会在XCode上打印

时间:2012-03-29 01:07:25

标签: objective-c c xcode xcode4.2 wchar-t

我正在做一个小应用程序来评估和分析传递函数。由于主题可能看起来很无聊,我希望它至少看起来更酷,专业和真棒等......所以:

  • 第1步:Gimme teh系数! [一堆数字]
  • 第2步:我将用其上标写出多项式。 [字符串中的一串数字]

所以,我编写了一个小C解析器来打印具有合适格式的多项式,因为我需要一个wchar_t字符串,我可以动态连接。字符串完成后,我快速尝试在控制台上打印它以检查一切正常并继续。容易吗?韦尔普,我幸运的是......

wchar_t *polynomial_description( double *polyArray, char size, char var ){

    wchar_t *descriptionString, temp[100];
    int len, counter = 0;
    SUPERSCRIPT superscript;

    descriptionString = (wchar_t *) malloc(sizeof(wchar_t) * 2);
    descriptionString[0] = '\0';

    while( counter < size ){

        superscript = polynomial_utilities_superscript( size - counter );
        len = swprintf(temp, 100, L"%2.2f%c%c +", polyArray[counter], var, superscript);
        printf("temp size: %d\n", len);

        descriptionString = (wchar_t *) realloc(descriptionString, sizeof(wchar_t) * (wcslen(descriptionString) + len + 1) );
        wcscat(descriptionString, temp);

        counter++;

    }

    //fflush(stdout); //Already tried this
    len = wprintf(L"%ls\n", descriptionString);
    len = printf("%ls**\n", descriptionString);
    len = fprintf(stdout, "%ls*\n", descriptionString);
    len = printf("FFS!! Print something!");

    return descriptionString;

}

在运行期间,我们可以看到temp size: 8仅在调试时打印了预期的次数,如果我运行程序,我每次运行都会得到任意数量的打印件。但在那之后,正如标题所述,wprintf,printf和fprintf不打印任何内容,但len确实会在每次调用后改变其大小。

在调用函数中,(application:(UIApplication *)application didFinishLaunchingWithOptions:,在测试时)我放了一个NSLog打印返回字符串,我甚至没有得到任何日志部分。

发生了什么?我完全失去了。

顺便说一句,我在XCode 4.2上。

1 个答案:

答案 0 :(得分:2)

在您认为没有打印任何内容的情况下,printf / wprintf的返回值是多少?如果失败或者1或者更多,应该返回-1,因为如果成功,它应该始终至少打印描述字符串后面的换行符。

  • 如果它返回1或更多,是否会打印换行符?您是否尝试将程序输出管道传输到十六进制转储程序,例如hexdump -Cxxd(1)
  • 如果它返回-1,errno的值是多少?

如果事实证明printf失败并显示错误EILSEQ,则很可能发生的事情是您的字符串中包含一些非ASCII字符,因为这些字符会导致wcstombs(3)在默认的C语言环境中失败。在这种情况下,解决方案是在程序启动时使用setlocale(3)切换到UTF-8语言环境:

int main(int argc, char **argv)
{
    // Run "locale -a" in the Terminal to get a list of all valid locales
    setlocale(LC_ALL, "en_US.UTF-8");
    ...
}